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