Add initial configuration and structure for the Twitch app, including models, views, and admin registration

This commit is contained in:
Joakim Hellsén 2025-07-08 19:05:36 +02:00
commit 0c7c1c3f30
12 changed files with 76 additions and 83 deletions

16
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Django",
"type": "debugpy",
"request": "launch",
"args": [
"runserver"
],
"django": true,
"autoStartBrowser": false,
"program": "${workspaceFolder}\\manage.py"
}
]
}