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 クイックスタート