Add working prototype

This commit is contained in:
2024-06-22 05:33:42 +02:00
parent 67dc4639a0
commit e8f7e55135
60 changed files with 982 additions and 19571 deletions

22
.vscode/launch.json vendored
View File

@ -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

View File

@ -1,9 +1,14 @@
{
"cSpell.words": [
"appendonly",
"asgiref",
"logdir",
"memlock",
"networkidle",
"PGID",
"PUID",
"requirepass",
"ttvdrops"
"ttvdrops",
"ulimits"
]
}