From f9509ac2d11776a89ca36797df36ae763a686fde Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Sat, 28 Nov 2020 16:18:37 +0100 Subject: [PATCH] update the vscode settings for the new django path --- .vscode/launch.json | 2 +- .vscode/settings.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 1912deb..0424061 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,7 @@ "name": "Python: Django", "type": "python", "request": "launch", - "program": "${workspaceFolder}/manage.py", + "program": "${workspaceFolder}/backend/manage.py", "args": [ "migrate", "runserver", diff --git a/.vscode/settings.json b/.vscode/settings.json index d7ccbc6..ffff6f7 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,6 +6,7 @@ "python.linting.pylintEnabled": false, "python.linting.flake8Enabled": true, "python.linting.enabled": true, + "python.testing.cwd": "backend", "python.testing.pytestArgs": [ ".", "-n 6",