0

I need to deploy multiple apps on the same project. I am using gcloud app deploy app.yaml --project <project name> to deploy from the folder where everything is for each app, but it's just overwriting in the same url each time.

1 Answer 1

1

The App Engine service is the solution, you can create a multiple service in App Engine to serve your multiple application. To do this you need to deploy your application with the line of service and the name of your service in your app.yaml, for example:

app.yaml:

service: second-app
runtime: python39

then redeploy:

gcloud app deploy

You can find your App Engine service app URL in this App Engine > Services or the like the format below:

https://SERVICE_ID-dot-PROJECT_ID.REGION_ID.r.appspot.com
Sign up to request clarification or add additional context in comments.

2 Comments

You can also do it with a single service. Map multiple domains to the service and then route the URLs by domain.
Thank you John! This is the best and simplest answer I've seen on this issue! Took me a minute to implement.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.