Skip to content

Commit 305348a

Browse files
#1 Separate Applications, django apps, third party apps and local apps
1 parent 596802a commit 305348a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

config/settings/base.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
# Application definition
3232

33-
INSTALLED_APPS = [
33+
DJANGO_APPS = [
3434
'django.contrib.admin',
3535
'django.contrib.auth',
3636
'django.contrib.contenttypes',
@@ -39,6 +39,12 @@
3939
'django.contrib.staticfiles',
4040
]
4141

42+
THIRD_PARTY_APPS = []
43+
44+
LOCAL_APPS = []
45+
46+
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
47+
4248
MIDDLEWARE = [
4349
'django.middleware.security.SecurityMiddleware',
4450
'django.contrib.sessions.middleware.SessionMiddleware',

0 commit comments

Comments
 (0)