Compare commits

..

1 Commits

Author SHA1 Message Date
0xee b645143b60 Add setup.py 2019-10-31 17:37:41 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ python }:
with python.pkgs;
buildPythonPackage rec {
buildPythonApplication 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=True, host='0.0.0.0', port=4000)
app.run(debug=False, host='0.0.0.0', port=4000)