Switch the local debug port to 5000 and bind to an externally facing adapter.

This commit is contained in:
yackob03 2013-10-12 13:26:49 -04:00
parent 124c31fb36
commit 1e313fc668

View file

@ -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')