在python谷歌应用引擎中更新失败

时间:2015-07-21 06:30:19

标签: google-app-engine

我已经在ubuntu-15.04中为python成功安装了谷歌应用引擎SDK。它适用于localhost。给定命令会出错。

$ dev_appserver.py .
INFO     2015-07-21 06:18:19,221 api_server.py:205] Starting API server at: http://localhost:55916
INFO     2015-07-21 06:18:19,224 dispatcher.py:197] Starting module "default" running at: http://localhost:8080
INFO     2015-07-21 06:18:19,236 admin_server.py:118] Starting admin server at: http://localhost:8000
INFO     2015-07-21 06:19:49,695 module.py:809] default: "GET / HTTP/1.1" 200 13

到目前为止一切正常。

当我想更新它时,它会给出错误

$ appcfg.py update .
Usage: appcfg.py [options] update <directory> | [file, ...]

appcfg.py: error: Expected -A app_id when application property in file app.yaml is not set

这是什么意思?有人可以帮我解决这个错误吗?如果有app id问题那么我将如何获得应用ID? 谢谢

1 个答案:

答案 0 :(得分:3)

第二个转储的最后一行告诉您应用程序属性&#39;在配置文件中,app.yaml未设置。在开头添加一行,如下所示:

application: <name>

其中<name>替换为您的应用程序名称。 您还可以使用带有-A标记的appcfg进行更新:

appcfg.py -A <name> update <directory>

,再次将<name><directory>替换为所需的应用程序名称和app.yaml文件所在的项目目录。