From 8c99a28a8528e21928cc7d8535c5119d08535fb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20K=C4=99dryna?= Date: Mon, 16 Jun 2025 13:50:58 +0200 Subject: [PATCH] chore(.vscode/launch.json): run flask on 0.0.0.0 --- .vscode/launch.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 07216bb..2b2ce62 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,6 +14,9 @@ }, "args": [ "run", + "--host", + "0.0.0.0", + ], "console": "internalConsole", "justMyCode": true,