Titan/webapp/run_c9.py
2017-08-19 03:52:32 +00:00

6 lines
198 B
Python

from run import app, socketio, init_debug
import os
if __name__ == "__main__":
init_debug()
socketio.run(app, host=os.getenv('IP', '0.0.0.0'), port=int(os.getenv('PORT', 8080)), debug=True)