From 04426babde316b533e0a98951dbf0f0415718bbb Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Tue, 31 Jan 2017 22:38:27 +0100 Subject: [PATCH] Added host='0.0.0.0' to run command for addressing from other than localhost --- v1/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v1/app.py b/v1/app.py index 98ec0b6..8dfe132 100755 --- a/v1/app.py +++ b/v1/app.py @@ -108,4 +108,4 @@ def get_uptimesLoad(): if __name__ == '__main__': - app.run(port=63580,debug=True) + app.run(host='0.0.0.0',port=63580,debug=True)