Skip to content

Commit

Permalink
Change server binding to allow external access
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartmac committed Nov 8, 2024
1 parent b49d59a commit 06c5ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,6 @@ def results(session_id):

if __name__ == '__main__':
app.debug = os.environ.get('FLASK_DEBUG', False)
server = WSGIServer(('127.0.0.1', 8088), app)
server = WSGIServer(('0.0.0.0', 8088), app)
server.serve_forever()

0 comments on commit 06c5ae8

Please sign in to comment.