Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用瓶子框架在 heroku 上使用 python 程序。为了在本地运行它,我使用了
run(host='localhost', port=8080)
在线运行它我应该将其更改为什么。
port = int(os.environ.get("PORT", 5000)) app.run(host='0.0.0.0', port=port)
来源:Heroku/Python 快速入门