Switch the local debug port to 5000 and bind to an externally facing adapter.
This commit is contained in:
parent
124c31fb36
commit
1e313fc668
1 changed files with 1 additions and 1 deletions
|
@ -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')
|
||||
|
|
Reference in a new issue