From 013dcecba9735658b429ccd8cf1e17f450a61c60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Phillip=20K=C3=BChne?= Date: Sat, 9 Oct 2021 00:03:56 +0200 Subject: [PATCH] fix launch configs --- .vscode/launch.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 32d173f..900d079 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -27,6 +27,7 @@ "preLaunchTask": "versiondump", "name": "Python: Flask (with reload)", "type": "python", + "cwd": "${workspaceFolder}/backend/app", "request": "launch", "module": "flask", "env": { @@ -44,6 +45,7 @@ "preLaunchTask": "versiondump", "name": "Python: Flask (with reload, externally reachable)", "type": "python", + "cwd": "${workspaceFolder}/backend/app", "request": "launch", "module": "flask", "env": { @@ -54,7 +56,7 @@ "args": [ "run", "--no-debugger", - "--host='0.0.0.0'" + "--host=0.0.0.0" ], "jinja": true }, @@ -62,6 +64,7 @@ "preLaunchTask": "versiondump", "name": "Python: Flask (externally reachable)", "type": "python", + "cwd": "${workspaceFolder}/backend/app", "request": "launch", "module": "flask", "env": { @@ -73,7 +76,7 @@ "run", "--no-debugger", "--no-reload", - "--host='0.0.0.0'" + "--host=0.0.0.0" ], "jinja": true },