Skip to content

Instantly share code, notes, and snippets.

@mrw34
Created March 17, 2018 15:26
Show Gist options
  • Save mrw34/f1037683870a2d0ea62e6271a6b55507 to your computer and use it in GitHub Desktop.
Save mrw34/f1037683870a2d0ea62e6271a6b55507 to your computer and use it in GitHub Desktop.
Install "go read" on App Engine using Google Cloud Shell
# 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