Make c9 flask threaded

This commit is contained in:
Jeremy Zhang 2017-05-31 19:28:35 +00:00
parent 5f44738865
commit 91384cd166

View File

@ -3,4 +3,4 @@ import os
if __name__ == "__main__":
init_debug()
app.run(host=os.getenv('IP', '0.0.0.0'), port=int(os.getenv('PORT', 8080)), debug=True)
app.run(host=os.getenv('IP', '0.0.0.0'), port=int(os.getenv('PORT', 8080)), debug=True, processes=3)