You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gcloud config list # make sure if the project is validexport GLOUD_PROJECT={your project}
export IMAGE_NAME=my-bolt-app
export SLACK_BOT_TOKEN=xoxb-xxx-yyy-zzz
export SLACK_SIGNING_SECRET=the-value
# Build a Docker image and upload it to Google's registry
gcloud builds submit --tag gcr.io/${GLOUD_PROJECT}/${IMAGE_NAME}.# Deploy a Docker container to Google Cloud Run
gcloud run deploy \
--image gcr.io/${GLOUD_PROJECT}/${IMAGE_NAME} \
--platform managed \
--update-env-vars SLACK_BOT_TOKEN=${SLACK_BOT_TOKEN},SLACK_SIGNING_SECRET=${SLACK_SIGNING_SECRET}# no space