From 10f7b23c9c5b3660f5c37a2ba56856db044ea1ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 11 Mar 2024 18:08:53 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Update=20VS=20Code=20debug=20con?= =?UTF-8?q?fig=20(#676)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7a10ce3b45..24eae850d0 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -13,19 +13,16 @@ "app.main:app", "--reload" ], - "cwd": "${workspaceFolder}/src/backend", + "cwd": "${workspaceFolder}/backend", "jinja": true, - "envFile": "${workspaceFolder}/src/.env", - "env": { - "POSTGRES_SERVER": "localhost" - } + "envFile": "${workspaceFolder}/.env", }, { "type": "chrome", "request": "launch", "name": "Debug Frontend: Launch Chrome against http://localhost:5173", "url": "http://localhost:5173", - "webRoot": "${workspaceFolder}/src/new-frontend" + "webRoot": "${workspaceFolder}/frontend" }, ] }