From eb651ef702e6b6ec3cc60a71294c815dbf133213 Mon Sep 17 00:00:00 2001 From: drops Date: Sat, 26 Oct 2024 20:51:35 +0200 Subject: [PATCH] change listen network to 0.0.0.0 to work behind docker proxy --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index e6b57e7..decc5da 100644 --- a/app.py +++ b/app.py @@ -418,4 +418,4 @@ def calculate_distance_shootoff(desired_wall_length, size, target_count): return distance if __name__ == '__main__': - app.run(debug=True) + app.run(host='0.0.0.0')