Add market app
This commit is contained in:
parent
10179dde45
commit
e6a4ee495b
@ -40,7 +40,9 @@ THIRD_PARTY_APPS = [
|
|||||||
"corsheaders",
|
"corsheaders",
|
||||||
]
|
]
|
||||||
|
|
||||||
LOCAL_APPS = []
|
LOCAL_APPS = [
|
||||||
|
"market.apps.MarketConfig",
|
||||||
|
]
|
||||||
|
|
||||||
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
|
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
|
||||||
|
|
||||||
|
0
market/__init__.py
Normal file
0
market/__init__.py
Normal file
0
market/admin.py
Normal file
0
market/admin.py
Normal file
6
market/apps.py
Normal file
6
market/apps.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class MarketConfig(AppConfig):
|
||||||
|
default_auto_field = "django.db.models.BigAutoField"
|
||||||
|
name = "market"
|
0
market/migrations/__init__.py
Normal file
0
market/migrations/__init__.py
Normal file
0
market/models.py
Normal file
0
market/models.py
Normal file
0
market/tests.py
Normal file
0
market/tests.py
Normal file
Loading…
Reference in New Issue
Block a user