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 -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/febfeef1-5765-450a-9875-47eaa5e7562d%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
