Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Professor/TA Invite Email #823

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 18 commits
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
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: "^14.17.3"
node-version: "^18.20.0"
- name: Install
run: yarn install
- name: Build Client
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: "^14.17.3"
node-version: "^18.20.0"
- name: Install
run: |
yarn install
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v14.17.3
v18.20.0
8 changes: 5 additions & 3 deletions firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"yarn --cwd \"$RESOURCE_DIR\" lint",
"yarn --cwd \"$RESOURCE_DIR\" build"
],
"source": "functions"
"source": "functions",
"runtime": "nodejs18"
},
"emulators": {
"functions": {
Expand All @@ -39,10 +40,11 @@
"port": 8080
},
"hosting": {
"port": 5000
"port": 5005
},
"ui": {
"enabled": true
}
}
}
}

3 changes: 3 additions & 0 deletions functions/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ typings/

# Node.js dependency directory
node_modules/

# local runtime config for Twilio
.runtimeconfig.json
11 changes: 7 additions & 4 deletions functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,23 @@
"name": "functions",
"scripts": {
"lint": "eslint 'src/**/*'",
"lint:fix": "eslint --fix 'src/**/*'",
"build": "tsc",
"dev": "npm run build && firebase emulators:start --inspect-functions --only functions",
"serve": "npm run build && firebase emulators:start --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "^14.17.3"
"node": "18"
},
"main": "lib/index.js",
"dependencies": {
"firebase-admin": "^8.10.0",
"firebase-functions": "^3.17.1",
"firebase-admin": "^12.0.0",
"firebase-functions": "^4.8.2",
"mailtrap": "^3.3.0",
"twilio": "^3.71.3"
},
"devDependencies": {
Expand All @@ -24,7 +27,7 @@
"eslint": "^7.6.0",
"eslint-plugin-import": "^2.22.0",
"firebase-functions-test": "^0.2.0",
"typescript": "^3.8.0"
"typescript": "4.1.6"
},
"private": true
}
Loading
Loading