[google-appengine] Re: Issues accessing backend API deployed in App Engine

2021-01-25 Thread 'Daniel (Google Cloud Support)' via Google App Engine
That error message usually points out that your application starting a webserver and handling requests correctly [1]. There is an example on how to deploy a Springboot application for Google App Engine Java 11 runtime here [2] (the repository is here [3]). I'd strongly advise you to check [2]

Re: [google-appengine] Re: Deploy app into two environments: Staging and Production.

2021-01-13 Thread 'Daniel (Google Cloud Support)' via Google App Engine
You are right. As advised on the product description for App Engine Standard [1] you are just basically deploying an application into container instances running on Google's infrastructure. In the specific case of App Engine Flexible you can even define your own Dockerfile [2] for a custom

Re: [google-appengine] Re: Environment Variables inside cloud_build.yaml + PHP

2021-01-11 Thread 'Daniel (Google Cloud Support)' via Google App Engine
The environment variables defined on the cloudbuild.yaml file will be available within the instances running your Cloud Build steps. For the variables to persist on your App Engine application and be used at runtime they'd need to be defined on the app.yaml file. So, as explained on this