diff --git a/src/ozai_webui/__init__.py b/src/ozai_webui/__init__.py index d2481c5..ccc557f 100755 --- a/src/ozai_webui/__init__.py +++ b/src/ozai_webui/__init__.py @@ -221,8 +221,8 @@ def ws_message(data): socketio.emit('move_status', response.text, room=game_id) def main (): - # app.run(debug=True, host='0.0.0.0', port=5000,ssl_context='adhoc') - return socketio.run(app, debug=False, host=ozai_webui_host, port=ozai_webui_port, allow_unsafe_werkzeug=True) + return app.run(host=ozai_webui_host, port=ozai_webui_port) + #return socketio.run(app, debug=False, host=ozai_webui_host, port=ozai_webui_port, allow_unsafe_werkzeug=True) if __name__ == '__main__': main()