Add launch.json for Django

This commit is contained in:
Joakim Hellsén 2024-01-27 23:54:47 +01:00
commit 38575a6d42
2 changed files with 16 additions and 0 deletions

13
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Django",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}\\manage.py",
"args": ["runserver"],
"django": true
}
]
}