Skip to content

Latest commit

 

History

History

cloud_functions

Google Cloud Functions

This package represents a GCF deployment unit.

How to deploy

Execute the following command from the terminal:

GCP_PROJECT_ID=<project-id>

gcloud functions deploy ru-proverb \
    --region=us-central1 \
    --entry-point=main \
    --runtime=python37 \
    --trigger-http \
    --memory=1024M \
    --allow-unauthenticated \
    --project="${GCP_PROJECT_ID}"