UNPKG

serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

11 lines (7 loc) 252 B
.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