chore(shop): scaffold empty shop app
startapp scaffold registered in INSTALLED_APPS; no models yet. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -50,6 +50,7 @@ INSTALLED_APPS = [
|
|||||||
"teams.apps.TeamsConfig",
|
"teams.apps.TeamsConfig",
|
||||||
"events.apps.EventsConfig",
|
"events.apps.EventsConfig",
|
||||||
"formbuilder.apps.FormbuilderConfig",
|
"formbuilder.apps.FormbuilderConfig",
|
||||||
|
"shop.apps.ShopConfig",
|
||||||
]
|
]
|
||||||
|
|
||||||
MIDDLEWARE = [
|
MIDDLEWARE = [
|
||||||
|
|||||||
0
shop/__init__.py
Normal file
0
shop/__init__.py
Normal file
1
shop/admin.py
Normal file
1
shop/admin.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Register your models here.
|
||||||
5
shop/apps.py
Normal file
5
shop/apps.py
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class ShopConfig(AppConfig):
|
||||||
|
name = "shop"
|
||||||
1
shop/models.py
Normal file
1
shop/models.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Create your models here.
|
||||||
1
shop/tests.py
Normal file
1
shop/tests.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Create your tests here.
|
||||||
1
shop/views.py
Normal file
1
shop/views.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# Create your views here.
|
||||||
Reference in New Issue
Block a user