Reputation: 294
Google no longer support the GoogleAppEngineLauncher program.
When I installed GoogleAppEngine I just got Google Cloud SDK shell. I want to add a project to GoogleAppEngine to run and deploy.
I got these links and cant understand
How to do it both locally and online ?
Upvotes: 0
Views: 389
Reputation: 1572
"Quickstart for Windows" is a good starting point for new users of Cloud SDK.
In order to deploy and run a GAE application with the Cloud SDK you have to use shell/command prompt, as opposed to GoogleAppEngineLauncher where you had a GUI. The steps are:
app.yaml
. is. For example: CD C:\Users\AQueue\Projects\MyGAEApplication
and check that app.yaml
file is there using dir
command.gcloud app deploy
This should be it.
gcloud
is one of the most important tools in the SDK that allows to interact with many products and services from Google Cloud Platform. If you want to read more about gcloud
you can start with this overview.
Upvotes: 1