Titan/run.py

6 lines
132 B
Python
Raw Normal View History

#!/usr/bin/env python2
from titanembeds.app import app
if __name__ == "__main__":
app.run(host="0.0.0.0",port=3000,debug=True)