Titan/webapp/run_c9.py
2017-05-02 18:37:24 +00:00

6 lines
178 B
Python

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)