change listen network to 0.0.0.0 to work behind docker proxy

This commit is contained in:
2024-10-26 20:51:35 +02:00
parent 22f9945b0a
commit eb651ef702

2
app.py
View File

@@ -418,4 +418,4 @@ def calculate_distance_shootoff(desired_wall_length, size, target_count):
return distance return distance
if __name__ == '__main__': if __name__ == '__main__':
app.run(debug=True) app.run(host='0.0.0.0')