From 011c61732809c195b0f8747cc4a2337f2067ff1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Fri, 3 Oct 2025 22:31:42 +0200 Subject: [PATCH] Refactor launch.json to standardize configuration names and paths --- .vscode/launch.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 05881db..ce16edd 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,7 +2,7 @@ "version": "0.2.0", "configurations": [ { - "name": "Python Debugger: Django", + "name": "Django", "type": "debugpy", "request": "launch", "args": [ @@ -10,19 +10,19 @@ ], "django": true, "autoStartBrowser": false, - "program": "${workspaceFolder}\\manage.py" + "program": "${workspaceFolder}/manage.py" }, { - "name": "Python Debugger: Import Drops", + "name": "Import Drops", "type": "debugpy", "request": "launch", "args": [ "import_drops", - "C:\\Responses" + "${workspaceFolder}/Responses" ], "django": false, "autoStartBrowser": false, - "program": "${workspaceFolder}\\manage.py" + "program": "${workspaceFolder}/manage.py" } ] } \ No newline at end of file