From 3eccc517ca4c55c1ed80ccfe24e96c42054b30a5 Mon Sep 17 00:00:00 2001 From: Kameron Kenny <1267885+kkenny@users.noreply.github.com> Date: Sun, 20 Oct 2024 15:00:08 -0400 Subject: [PATCH] listen on 0.0.0.0 --- api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.py b/api.py index 4533acb..0c0f755 100644 --- a/api.py +++ b/api.py @@ -22,4 +22,4 @@ def get_client_config(hostname): return jsonify(_CLIENT_CONFIG), 200 if __name__ == '__main__': - app.run() \ No newline at end of file + app.run(debug=True, host='0.0.0.0') \ No newline at end of file