diff --git a/main.py b/main.py index 13ab7403ccd00076f9b4cdeb2e18284142b06179..465867d622c01a37caf0e298e9406c3b439c3c2a 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.