gpt4 book ai didi

python - 在 Heroku 上提供来自 gunicorn 的 Bottle 应用程序?

转载 作者:太空宇宙 更新时间:2023-11-04 03:57:28 26 4
gpt4 key购买 nike

简介

web: python server.py

服务器.py

from os import environ
from bottle import app, route, run, static_file

@route('/')
def root():
return "Hello world!"

if __name__ == '__main__':
run(server='gunicorn', host='0.0.0.0', port=int(environ.get("PORT", 5000)))

需求.txt

gunicorn
psycopg2
git+https://github.com/defnull/bottle#egg=bottle

日志文件的相关部分(在 git push 之后)

heroku[router]: at=error code=H14 desc="No web processes running"

最佳答案

首先:您确定这些是所有必要的要求吗?

如果是,您确定您分配了测功机吗? heroku ps 的结果是什么? H14 被列为通常是由于没有设置运行您的应用程序的测功机引起的。

您可以将它设置为使用一个带有 heroku ps:scale web=1 的 web dyno。

关于python - 在 Heroku 上提供来自 gunicorn 的 Bottle 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17556082/

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