Created
March 17, 2018 15:26
-
-
Save mrw34/f1037683870a2d0ea62e6271a6b55507 to your computer and use it in GitHub Desktop.
Install "go read" on App Engine using Google Cloud Shell
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
# open https://console.cloud.google.com/home/dashboard?cloudshell=true | |
PROJECT_ID=go-read-123456 | |
gcloud projects create $PROJECT_ID | |
gcloud app create --project=$PROJECT_ID | |
goapp get -d github.com/mjibson/goread | |
cd ~/gopath/src/github.com/mjibson/goread/app/ | |
sed s/go-read/$PROJECT_ID/ app.sample.yaml >app.yaml | |
cp ../settings.go.dist ../settings.go | |
goapp deploy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment