无法在主页上显示内容; Google App Engine上的Flask应用

时间:2016-08-30 13:18:54

标签: python google-app-engine web-applications flask

我正在尝试在GAE上部署一个烧瓶应用程序。

所有依赖项如Flask,jinja2等都在同一目录中

当GAE启动程序在本地部署应用程序时,它会部署,但是一旦本地服务器启动并运行就不会在主网址上显示任何内容,即使main.py返回主网址的某些文本

以下是我的档案:

的app.yaml

from flask import Flask, render_template, request
app = Flask(__name__)

@app.route("/")
def template_test():
     return "Hello"

if __name__ == "__main__":
     app.run()

main.py

Appliance Error (configuration_error)
Your request could not be processed because of a configuration error: "Unable to connect to authentication agent"

可能是什么问题?

2 个答案:

答案 0 :(得分:0)

尝试将main更改为name:

app = Flask("__name__")

if __name__ == "__main__":

 app.run(debug=True)

答案 1 :(得分:0)

Flask已处理:

if __name__ == "__main__":
     app.run()

所以删除它。阅读run(host=None, port=None, debug=None, **options)部分:

http://flask.pocoo.org/docs/0.11/api/