Somewhere on my SSD is an ongoing, actively managed Google App Engine project. I develop it on this machine and I am always able to deploy it successfully with gcloud app deploy.
Now i wanted to create another Google App Engine project.
Steps to reproduce:
- I created the directory on my developer machine (Mac)
cd mynewproject
- I created the project in google app engine console
mynewproject
- Then i wanted to create the new app as follows:
gcloud app create
Result:
But this gives the following error:
$ gcloud app create ERROR: (gcloud.app.create) The project [oldproject] already contains an App Engine application in region [europe-west]. You can deploy your application using
gcloud app deploy.
I am pretty sure that i moved to another directory far outside of the directory for "oldproject".
Also the new project is listed in the Google App Engine console with all other projects.
How can i work on this project on the same machine without to need removing my other GAE-project?