generated from bisco/codex-bootstrap
feat: add Django backend skeleton
This commit is contained in:
1
backend/shows/__init__.py
Normal file
1
backend/shows/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
6
backend/shows/apps.py
Normal file
6
backend/shows/apps.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ShowsConfig(AppConfig):
|
||||
default_auto_field = "django.db.models.BigAutoField"
|
||||
name = "shows"
|
||||
1
backend/shows/models.py
Normal file
1
backend/shows/models.py
Normal file
@@ -0,0 +1 @@
|
||||
# Domain models will be added when show management is implemented.
|
||||
Reference in New Issue
Block a user