update the vscode settings for the new django path

This commit is contained in:
Andreas Zweili 2020-11-28 16:18:37 +01:00
parent 7faa31d952
commit f9509ac2d1
2 changed files with 2 additions and 1 deletions

2
.vscode/launch.json vendored
View File

@ -8,7 +8,7 @@
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"program": "${workspaceFolder}/backend/manage.py",
"args": [
"migrate",
"runserver",

View File

@ -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",