From 1e313fc668fd3c33253234c95059dfe015c9eabf Mon Sep 17 00:00:00 2001 From: yackob03 Date: Sat, 12 Oct 2013 13:26:49 -0400 Subject: [PATCH] Switch the local debug port to 5000 and bind to an externally facing adapter. --- application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application.py b/application.py index 8dca9ef9c..d8d29a177 100644 --- a/application.py +++ b/application.py @@ -14,4 +14,4 @@ application.debug = True logging.basicConfig(**application.config['LOGGING_CONFIG']) if __name__ == '__main__': - application.run(port=5001, debug=True) + application.run(port=5000, debug=True, host='0.0.0.0')