Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google App Engine: This application does not exist

I try to upload sample app to Google App Engine with existing progect ID. Here is GAE screenshot gae screenshot

I'm using the same ID in the progect. But when I try to upload it with plugin from Eclipse then I recive an error:

eclipse error

The whole error from a console:

------------ Deploying frontend ------------

Preparing to deploy:
    Created staging directory at: 'C:\Users\User\AppData\Local\Temp\appcfg2693799039714166602.tmp'
    Scanning for jsp files.
    Scanning files on local disk.
    Initiating update.
com.google.appengine.tools.admin.HttpIoException: Error posting to URL: https://appengine.google.com/api/appversion/create?app_id=app1-152711&version=1&
404 Not Found
This application does not exist (project_id=u'app1-152711'). To create an App Engine application in this project, run "gcloud beta app create" in your console.


Debugging information may be found in C:\Users\User\AppData\Local\Temp\appengine-deploy7186088524405894873.log

Why I can not upload it?

like image 634
cinematik01 Avatar asked Dec 23 '22 22:12

cinematik01


2 Answers

This is actually the new intended behavior. App Engine will not be enabled for new projects until you go through the app creation flow in the Cloud Console under 'App Engine' to enable the App Engine service, or alternatively run gcloud beta app create from the console.

like image 113
Adam Avatar answered Jan 10 '23 15:01

Adam


I just encountered this myself. The project has to be created in the Cloud Console AND you need to go through the project setup in AppEngine. Something must be broken in the API that creates the AppEngine part of the process while uploading. So doing it through the web interface creates the project for you... and then uploading will essentially fill it in.

It never used to be this way, so maybe something changed.

like image 20
Jason Washo Avatar answered Jan 10 '23 13:01

Jason Washo