Compare commits

..

1 Commits

Author SHA1 Message Date
3bff5b38a7 Add setup.py 2019-10-31 17:31:45 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ python }:
with python.pkgs;
buildPythonApplication rec {
buildPythonPackage rec {
name = "mqtt-dash";
src = ./.;
propagatedBuildInputs = [ flask ];

View File

@ -6,4 +6,4 @@ from mqtt_dash.app import app
app.secret_key = os.urandom(12)
app.run(debug=False, host='0.0.0.0', port=4000)
app.run(debug=True, host='0.0.0.0', port=4000)