mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
11 lines
252 B
Makefile
11 lines
252 B
Makefile
.PHONY: gomodgen deploy delete
|
|
|
|
gomodgen:
|
|
GO111MODULE=on go mod init
|
|
|
|
deploy:
|
|
gcloud functions deploy hello --entry-point Hello --runtime go111 --trigger-http
|
|
|
|
delete:
|
|
gcloud functions delete hello --entry-point Hello --runtime go111 --trigger-http
|