mqtt-dash/mqtt-dash

10 lines
146 B
Python
Executable File

#!/usr/bin/env python
import os
from mqtt_dash.app import app
app.secret_key = os.urandom(12)
app.run(debug=False, host='0.0.0.0', port=4000)