我收到此错误代码:
扑向2020-08-27T00:35:29.293812 + 00:00 heroku [router]:at = error 代码= H10 desc =“应用程序崩溃”方法=获取路径=“ /” host = song-recommender-michaelwzhu.herokuapp.com request_id = 516f57c9-167b-47c0-86fb-3258aa046768 fwd =“ 24.4.72.198” dyno = connect = service = status = 503字节= protocol = https
我的python flask应用程序在本地托管时可以运行,但是在Heroku上部署时会显示应用程序错误。
我的app.py
文件:
app = Flask(__name__)
*code*
if __name__ == '__main__':
app.run(debug=True)
我的requirements.txt
文件:
click==7.1.2
Flask==1.1.2
gunicorn==20.0.4
itsdangerous==1.1.0
Jinja2==2.11.2
MarkupSafe==1.1.1
Werkzeug==1.0.1
我的Procfile
:
web: gunicorn app:app