【发布时间】:2013-07-27 15:58:52
【问题描述】:
当我尝试运行我的应用程序时,我不断收到此错误。我的 app.yaml 是:
application: xxxapplication
version: 1
runtime: python27
api_version: 1
threadsafe: false
handlers:
- url: /static
static_dir: static
- url: /.*
script: main.py
libraries:
- name: django
version: "1.3"
- name: jinja2
version: latest
builtins:
- remote_api: on
我的目录树看起来像这样:
main.py
templates
static
app.yaml
我知道之前有人问过这个问题:Why does the Google App Engine warn me 'file referenced by handler not found : dailybasic.py' again and again?
但这似乎并不能解决我的问题。任何帮助将不胜感激。
【问题讨论】:
标签: python django google-app-engine