Skip to content

Instantly share code, notes, and snippets.

@garystafford
Created September 19, 2018 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garystafford/5baf3adca74b08ca1dc40cfb9ac8ea75 to your computer and use it in GitHub Desktop.
Save garystafford/5baf3adca74b08ca1dc40cfb9ac8ea75 to your computer and use it in GitHub Desktop.
#!/usr/bin/env sh
# author: Gary A. Stafford
# site: https://programmaticponderings.com
# license: MIT License
set -ex
# Set constants
REGION="us-east1"
FUNCTION_NAME="<your_function_name>"
# Deploy the Google Cloud Function
gcloud beta functions deploy ${FUNCTION_NAME} \
--runtime nodejs8 \
--region ${REGION} \
--trigger-http \
--memory 256MB \
--env-vars-file .env.yaml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment