Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Lms/Google-Classroom/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
GOOGLE_CLIENT_ID=
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You need not make a new folder. Use the current npm_package ltsdk folder for all lms code. Rename server.js to your lms.
Move the test to tests module inside aforementioned folder.
You don't need the rest, hence remove the redundant files.
If there's new libraries being used, use it in the same package.json file.

GOOGLE_CLIENT_SECRET=
GOOGLE_REDIRECT_URI=http://localhost:3000/api/google/callback
GOOGLE_PROJECT_ID=
GOOGLE_AUTH_URI=https://accounts.google.com/o/oauth2/auth
GOOGLE_TOKEN_URI=https://oauth2.googleapis.com/token
GOOGLE_CERT_URL=https://www.googleapis.com/oauth2/v1/certs
PORT=3000
2 changes: 2 additions & 0 deletions Lms/Google-Classroom/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/node_modules
/package-lock.json
21 changes: 21 additions & 0 deletions Lms/Google-Classroom/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "google-classroom",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"axios": "^1.11.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"googleapis": "^159.0.0"
}
}

Loading