How can I deploy direct from Google Cloud Source Repository to Google App Engine?

后端 未结 2 1453
既然无缘
既然无缘 2020-12-19 23:49

Google offers git -> App Engine and git <-> Source Repository, so presumably somewhere it offers Source Repository -> App Engine

相关标签:
2条回答
  • 2020-12-20 00:24

    The best way to do this would be to clone the repository to your machine (or Cloud Shell), then use the App Engine deploy tool (https://cloud.google.com/appengine/docs/php/getting-started/deploying-to-app-engine) to deploy your app.

    e.g.

    gcloud source repos clone $REPO
    cd $REPO
    gcloud app deploy app.yaml
    
    0 讨论(0)
  • 2020-12-20 00:36

    Ostensible solution (untested by me) here: https://web.archive.org/web/20161119132814/https://cloudplatform.googleblog.com/2016/10/introducing-Google-Cloud-Shels-new-code-editor.html

    0 讨论(0)
提交回复
热议问题