Add initial configuration and structure for the Twitch app, including models, views, and admin registration
This commit is contained in:
parent
31addca6de
commit
0c7c1c3f30
12 changed files with 76 additions and 83 deletions
0
twitch/__init__.py
Normal file
0
twitch/__init__.py
Normal file
1
twitch/admin.py
Normal file
1
twitch/admin.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Register your models here.
|
||||
10
twitch/apps.py
Normal file
10
twitch/apps.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from __future__ import annotations
|
||||
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class TwitchConfig(AppConfig):
|
||||
"""AppConfig subclass for the 'twitch' application."""
|
||||
|
||||
default_auto_field: str = "django.db.models.BigAutoField"
|
||||
name = "twitch"
|
||||
0
twitch/migrations/__init__.py
Normal file
0
twitch/migrations/__init__.py
Normal file
1
twitch/models.py
Normal file
1
twitch/models.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Create your models here.
|
||||
1
twitch/tests.py
Normal file
1
twitch/tests.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Create your tests here.
|
||||
1
twitch/views.py
Normal file
1
twitch/views.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Create your views here.
|
||||
Loading…
Add table
Add a link
Reference in a new issue