forked from cs161-staff/extensions
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
14 lines (12 loc) · 719 Bytes
/
Makefile
File metadata and controls
14 lines (12 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
prod:
gcloud config set project cs-161-extensions
gcloud functions deploy handle_form_submit --trigger-http --runtime python39
gcloud functions deploy handle_email_queue --trigger-http --runtime python39
gcloud functions deploy handle_flush_gradescope --trigger-http --runtime python39
stage:
gcloud config set project cs-161-extensions
gcloud functions deploy handle_form_submit_stage --entry-point handle_form_submit --trigger-http --runtime python39
gcloud functions deploy handle_email_queue_stage --entry-point handle_email_queue --trigger-http --runtime python39
gcloud functions deploy handle_flush_gradescope_stage --entry-point handle_flush_gradescope --trigger-http --runtime python39
test:
pytest