Files
twitch-drop-notifier/.vscode/launch.json
2024-12-09 06:18:57 +01:00

18 lines
317 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Django: Runserver",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"args": [
"runserver",
"--nothreading"
],
"django": true,
"justMyCode": true
}
]
}