How do you serve a website from GCP app engine?

71 Views Asked by At

I have set up a Node.js server in Google Cloud Platform App Engine, and have also configured a custom domain, which is correctly configured and has a SSL cert.

However, I can't figure out how to actually serve through the domain.

1

There are 1 best solutions below

0
On BEST ANSWER

In the GCP terminal, run this command:

gcloud app deploy

Since the server is already set up and working and the domain is already configured, that command is all that's needed to deploy.