App engine ERROR SOLVED This application does not exist (app_id=??).
This application does not exist (app_id=).
You have to run 2 commands in order to initialise the blank application soRun this 2 command
gcloud config set project project-Id-here
gcloud components update
gcloud beta app create
gcloud beta app create will be installed on your PC if you don't have it .Its 1 MB only
You have to do exactly as the error message tells you, which is to run the
gcloud app create
(beta no longer needed) command from a terminal.
App Engine is no longer automatically initialized for newly created projects, so you must run this command on a new project before deploying an App Engine app for the first time.
Final Running
__________________________________________________________________________
Comments