mybuddy/.vscode/launch.template.json

21 lines
535 B
JSON
Raw Normal View History

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