如何使用Python SimpleHTTPServer启动Heroku应用程序

时间:2017-04-03 23:47:34

标签: python heroku simplehttpserver

我有一个简单的Flask应用程序正在运行以侦听Heroku PORT

app = Flask(__name__)

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

我也想提供一个简单的Python服务器,它位于一个名为sim_serv.py的不同文件中。我怎么能这样做?

0 个答案:

没有答案