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

后端 未结 2 1465
既然无缘
既然无缘 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
    

提交回复
热议问题