你好,世界! Google应用引擎问题

时间:2014-08-06 21:42:58

标签: python google-app-engine

我在Mac上,并且我第一次尝试使用谷歌应用引擎。我有正确版本的python。我创建了一个新的应用程序,并命名为'helloworld',并保留了创建新应用程序时自动生成的所有文件。按下运行后,我能够查看输出'Hello,world!'在我的浏览器localhost:8081;但是,当我部署应用程序时,日志中出现以下错误:

*** Running appcfg.py with the following flags:
    --no_cookies --email=killianjackson99@gmail.com --passin update
02:28 PM Application: heythereworld; version: 1
02:28 PM Host: appengine.google.com
02:28 PM 
Starting update of app: heythereworld, version: 1
02:28 PM Getting current resource limits.
02:28 PM Scanning files on local disk.
Error 404: --- begin server output ---
This application does not exist (app_id=u'heythereworld').
--- end server output ---
Password for killianjackson99@gmail.com: If deploy fails you might need to 'rollback' manually.
The "Make Symlinks..." menu option can help with command-line work.
*** appcfg.py has finished with exit code 1 ***

有没有人对可能出现的问题有任何想法?

2 个答案:

答案 0 :(得分:0)

在Google应用引擎服务器上部署应用之前,您需要在Google Developers Console中创建一个项目。 https://console.developers.google.com/project 您需要了解的有关de部署的所有信息,请访问:https://developers.google.com/appengine/docs/python/gettingstartedpython27/uploading

答案 1 :(得分:0)

在Developer Console中创建项目。 在app.yaml中添加您在控制台中输入的名称:

application: my_app_name
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /.*
  script: helloworld.application