Titan/webapp/run_c9.py

6 lines
178 B
Python
Raw Normal View History

2017-03-31 09:34:06 +02:00
from run import app, init_debug
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)