29 lines
717 B
JSON
29 lines
717 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
|
|
},
|
|
{
|
|
"name": "python manage.py scrape_twitch",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/manage.py",
|
|
"args": [
|
|
"scrape_twitch"
|
|
],
|
|
"django": true,
|
|
"justMyCode": true
|
|
}
|
|
]
|
|
}
|