Last active
August 25, 2019 15:02
-
-
Save OHua/f7c45e2919fe7bc810127d90570dad2f 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
## deploy to GAE | |
gcloud app deploy app.yaml -v delta | |
gcloud app deploy dispatch.yaml | |
## client connet to cloud sql: | |
wget https://dl.google.com/cloudsql/cloud_sql_proxy.linux.amd64 -O cloud_sql_proxy | |
chmod +x cloud_sql_proxy | |
~/cloud_sql_proxy -instances=<project_id>:<region_id>:<database_id>=tcp:3306 | |
## install Google Cloud SDK for gcloud cli-tool | |
## reference : https://cloud.google.com/sdk/install?hl=zh-TW | |
gcloud init | |
# gcloud auth login | |
# gcloud config help | |
touch app.yaml | |
touch cloudbuild.yaml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment