我用Python创建了一个flask应用程序,现在我想使用heroku进行部署。
但是当我在python终端中运行heroku open
命令时,出现错误
在接下来要显示的代码中,我包含了以下代码:
import sys
import logging
app.logger.addHandler(logging.StreamHandler(sys.stdout))
app.logger.setLevel(logging.ERROR)
但这完全不能解决我的问题
当我在本地主机上运行此代码时,它运行得很好
这是Python代码:
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def home_page():
return render_template('home.html')
@app.route('/about/')
def about_page():
return render_template('about.html')
if __name__ == '__main__':
app.run(debug=True)
我希望我的应用程序可以在Web服务器上实时显示,但这是我实际尝试执行的错误消息:Internal Server Error
The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.