0

我正在使用瓶子框架在 heroku 上使用 python 程序。为了在本地运行它,我使用了

  run(host='localhost', port=8080)

在线运行它我应该将其更改为什么。

4

1 回答 1

2
port = int(os.environ.get("PORT", 5000))
app.run(host='0.0.0.0', port=port)

来源:Heroku/Python 快速入门

于 2013-07-21T16:02:44.503 回答