Skip to content

Instantly share code, notes, and snippets.

@ojengwa
Created September 28, 2017 15:53
Show Gist options
  • Save ojengwa/9dc632ead296c717634a04b7014c3621 to your computer and use it in GitHub Desktop.
Save ojengwa/9dc632ead296c717634a04b7014c3621 to your computer and use it in GitHub Desktop.
.PHONY: all
assets:
gsutil -m rsync -R <public_dir>/ gs://<bucket_id>/<public_dir>
worker:
gcloud app deploy worker.yaml --stop-previous-version --verbosity=info --promote --project=<project_id>
web:
gcloud app deploy --stop-previous-version --verbosity=info --promote
browse:
gcloud app browse
logger:
gcloud app logs tail -s default
deploy: web worker assets
cors: assets
gsutil cors set cors.json gs://<public_dir>
all: deploy cors
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment