Hi. I have been maintaining old version of Google App Engine Python software by using appcfg.py to deploy. Now I got a notice from Google saying Python 2.5 will be disabled and I need to upgrade to 2.7.
So I installed Python 2.7 & new SDK, and I'm trying to deploy my software by gcloud command. After a few attempt I'm stuck with the following error message:
ERROR: (gcloud.app.deploy) The project [pj-name] already contains an App Engine application
I googled this error message but I couldn't find any solution for my case. Does anybody know what I should do or which resource I should look at?
The command I used: "gcloud app deploy"
The content of app.yaml file below:
runtime: python27
api_version: 1
threadsafe: false
derived_file_type:
- python_precompiled
handlers:
- url: /css
static_dir: css
- url: /js
static_dir: js
- url: /images
static_dir: images
- url: /html
static_dir: html
- url: /apputils/.*
script: controller.py
login: admin
- url: /remote_api
script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py
login: admin
- url: /.*
script: controller.py