mqtt-dash/mqtt-dash

10 lines
146 B
Plaintext
Raw Normal View History

2019-10-31 17:24:26 +01:00
#!/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)