From 7df6b0bd31a036bc0108fb33f178b53b036201cc Mon Sep 17 00:00:00 2001 From: Vadim Troshchinskiy Date: Mon, 16 Sep 2024 17:54:19 +0200 Subject: [PATCH] Ticket #740, listen on all hosts --- api/gitapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/gitapi.py b/api/gitapi.py index da46772..82f97e9 100644 --- a/api/gitapi.py +++ b/api/gitapi.py @@ -228,6 +228,6 @@ def health_check(): # Run the Flask app if __name__ == '__main__': - app.run(debug=True) + app.run(debug=True, host='0.0.0.0')