Created
September 28, 2017 15:53
-
-
Save ojengwa/9dc632ead296c717634a04b7014c3621 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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