mybuddy/.vscode/launch.template.json

21 lines
535 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Baby Buddy",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"python": "${workspaceFolder}/.venv/bin/python",
"env": {
"DEBUG": "False"
},
"args": [
"runserver"
],
"console": "integratedTerminal",
"django": true,
"justMyCode": true
}
]
}