From 1caac47d82cb0e12cd6ecf30b2476c246f782027 Mon Sep 17 00:00:00 2001 From: jonasled <jonas@jonasled.de> Date: Mon, 21 Oct 2019 10:38:49 +0200 Subject: [PATCH] added comments --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 13ab740..465867d 100644 --- a/main.py +++ b/main.py @@ -134,4 +134,4 @@ if __name__ == '__main__': if production: #Check if production variable is set to true use the waitress webserver, else use the buildin flask webserver, with more debug output serve(app, host='0.0.0.0', port= 5000) #Start the Webserver for all users on port 5000 else: - app.run(host='0.0.0.0', port=5000, debug=True) + app.run(host='0.0.0.0', port=5000, debug=True) #Start the Webserver in Debug mode. This means, if the script runs in an error, it will show the error message in Browser. -- GitLab