Add working prototype
This commit is contained in:
22
.vscode/launch.json
vendored
22
.vscode/launch.json
vendored
@ -1,16 +1,26 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Start webserver",
|
||||
"type": "python",
|
||||
"name": "Django: Runserver",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/manage.py",
|
||||
"args": [
|
||||
"runserver"
|
||||
"runserver",
|
||||
"--noreload",
|
||||
"--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
|
||||
|
7
.vscode/settings.json
vendored
7
.vscode/settings.json
vendored
@ -1,9 +1,14 @@
|
||||
{
|
||||
"cSpell.words": [
|
||||
"appendonly",
|
||||
"asgiref",
|
||||
"logdir",
|
||||
"memlock",
|
||||
"networkidle",
|
||||
"PGID",
|
||||
"PUID",
|
||||
"requirepass",
|
||||
"ttvdrops"
|
||||
"ttvdrops",
|
||||
"ulimits"
|
||||
]
|
||||
}
|
||||
|
Reference in New Issue
Block a user