Titan/webapp/run_c9.py

6 lines
198 B
Python
Raw Normal View History

2017-08-19 05:52:32 +02:00
from run import app, socketio, init_debug
2017-03-31 09:34:06 +02:00
import os
if __name__ == "__main__":
init_debug()
2017-08-19 05:52:32 +02:00
socketio.run(app, host=os.getenv('IP', '0.0.0.0'), port=int(os.getenv('PORT', 8080)), debug=True)