DashMachine/run.py
2020-01-06 07:21:52 -05:00

7 lines
154 B
Python
Executable File

#!/usr/bin/env python3
from dashmachine import app
if __name__ == "__main__":
app.run(debug=True, use_reloader=True, host="0.0.0.0", threaded=True)