We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 596802a commit 305348aCopy full SHA for 305348a
1 file changed
config/settings/base.py
@@ -30,7 +30,7 @@
30
31
# Application definition
32
33
-INSTALLED_APPS = [
+DJANGO_APPS = [
34
'django.contrib.admin',
35
'django.contrib.auth',
36
'django.contrib.contenttypes',
@@ -39,6 +39,12 @@
39
'django.contrib.staticfiles',
40
]
41
42
+THIRD_PARTY_APPS = []
43
+
44
+LOCAL_APPS = []
45
46
+INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
47
48
MIDDLEWARE = [
49
'django.middleware.security.SecurityMiddleware',
50
'django.contrib.sessions.middleware.SessionMiddleware',
0 commit comments