gpt4 book ai didi

python - 将 Flask 应用程序部署到 Heroku - web.1 : crashed

转载 作者:太空宇宙 更新时间:2023-11-03 18:45:22 25 4
gpt4 key购买 nike

我正在尝试将 Flask 应用程序部署到 Heroku,但收到此错误:

(hn_api)karan:hn$ heroku ps:scale web=1
Scaling web dynos... done, now running 1
(hn_api)karan:hn$ heroku ps
=== web (1X): `gunicorn app:app`
web.1: crashed 2013/10/28 11:13:09 (~ 4h ago)

这是(全部)我的代码:

#!/bin/env python

from flask import Flask, jsonify
from hn import HN

app = Flask(__name__)

@app.route('/get/top', methods = ['GET'])
def get_top():
hn = HN()
return jsonify({'stories': hn.get_stories()})

@app.route('/get/<story_type>', methods = ['GET'])
def get_stories(story_type):
hn = HN()
return jsonify({'stories': hn.get_stories(story_type=story_type)})

if __name__ == '__main__':
app.run(debug=True)

任何我的 Procfile

web: gunicorn app:app

这是我日志的一部分。

2013-10-28T12:18:46.452117+00:00 heroku[web.1]: Starting process with command `gunicorn app:app`
2013-10-28T12:18:46.997214+00:00 app[web.1]: bash: gunicorn: command not found
2013-10-28T12:18:48.223621+00:00 heroku[web.1]: Process exited with status 127
2013-10-28T12:18:48.247723+00:00 heroku[web.1]: State changed from starting to crashed
2013-10-28T16:18:49.078986+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/favicon.ico host=hnify.herokuapp.com fwd="173.250.172.145" dyno= connect= service= status=503 bytes=
2013-10-28T16:19:22.487749+00:00 heroku[api]: Scale to web=1 by xxxxx@gmail.com
2013-10-28T16:16:52.141316+00:00 heroku[api]: Scale to web=1 by xxxxx@gmail.com
2013-10-28T16:23:29.318342+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/favicon.ico host=hnify.herokuapp.com fwd="173.250.172.145" dyno= connect= service= status=503 bytes=
2013-10-28T16:23:24.607044+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/ host=hnify.herokuapp.com fwd="173.250.172.145" dyno= connect= service= status=503 bytes=
2013-10-28T16:23:18.342334+00:00 heroku[api]: Scale to web=1 by xxxxx@gmail.com
2013-10-28T18:13:04.249763+00:00 heroku[web.1]: State changed from crashed to starting
2013-10-28T18:13:07.083816+00:00 heroku[web.1]: Starting process with command `gunicorn app:app`
2013-10-28T18:13:07.654840+00:00 app[web.1]: bash: gunicorn: command not found
2013-10-28T18:13:08.854338+00:00 heroku[web.1]: State changed from starting to crashed
2013-10-28T18:13:08.839414+00:00 heroku[web.1]: Process exited with status 127
2013-10-28T22:32:35.548598+00:00 heroku[api]: Scale to web=1 by xxxxx@gmail.com

我不确定这里的日志有多大帮助,因为我在这里找不到任何内容。

谁能帮帮我吗?

最佳答案

2013-10-28T18:13:07.654840+00:00 app[web.1]: bash: gunicorn: command not found?

您应该将gunicorn添加到setup.py/requirements.txt/任何您用来管理依赖项的内容

关于python - 将 Flask 应用程序部署到 Heroku - web.1 : crashed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19646356/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com