Reorganized app loading order
This commit is contained in:
30
settings.py
30
settings.py
@@ -117,6 +117,7 @@ TEMPLATE_DIRS = (
|
|||||||
)
|
)
|
||||||
|
|
||||||
INSTALLED_APPS = (
|
INSTALLED_APPS = (
|
||||||
|
#Django
|
||||||
'django.contrib.auth',
|
'django.contrib.auth',
|
||||||
'django.contrib.contenttypes',
|
'django.contrib.contenttypes',
|
||||||
'django.contrib.sessions',
|
'django.contrib.sessions',
|
||||||
@@ -126,6 +127,17 @@ INSTALLED_APPS = (
|
|||||||
'django.contrib.admindocs',
|
'django.contrib.admindocs',
|
||||||
'django.contrib.comments',
|
'django.contrib.comments',
|
||||||
'django.contrib.staticfiles',
|
'django.contrib.staticfiles',
|
||||||
|
# 3rd party
|
||||||
|
# South
|
||||||
|
'south',
|
||||||
|
# Others
|
||||||
|
'filetransfers',
|
||||||
|
'taggit',
|
||||||
|
'mptt',
|
||||||
|
'compressor',
|
||||||
|
'djangorestframework',
|
||||||
|
'pagination',
|
||||||
|
# Base generic
|
||||||
'permissions',
|
'permissions',
|
||||||
'project_setup',
|
'project_setup',
|
||||||
'project_tools',
|
'project_tools',
|
||||||
@@ -135,34 +147,28 @@ INSTALLED_APPS = (
|
|||||||
'web_theme',
|
'web_theme',
|
||||||
'common',
|
'common',
|
||||||
'django_gpg',
|
'django_gpg',
|
||||||
'pagination',
|
|
||||||
'dynamic_search',
|
'dynamic_search',
|
||||||
'filetransfers',
|
|
||||||
'acls',
|
'acls',
|
||||||
'converter',
|
'converter',
|
||||||
|
'user_management',
|
||||||
|
'mimetype',
|
||||||
|
'scheduler',
|
||||||
|
'job_processor',
|
||||||
|
# Mayan EDMS
|
||||||
'storage',
|
'storage',
|
||||||
'folders',
|
'folders',
|
||||||
|
'tags',
|
||||||
'document_comments',
|
'document_comments',
|
||||||
'user_management',
|
|
||||||
'metadata',
|
'metadata',
|
||||||
'documents',
|
'documents',
|
||||||
'taggit',
|
|
||||||
'tags',
|
|
||||||
'linking',
|
'linking',
|
||||||
'mptt',
|
|
||||||
'document_indexing',
|
'document_indexing',
|
||||||
'document_acls',
|
'document_acls',
|
||||||
'ocr',
|
'ocr',
|
||||||
'sources',
|
'sources',
|
||||||
'mimetype',
|
|
||||||
'scheduler',
|
|
||||||
'job_processor',
|
|
||||||
'history',
|
'history',
|
||||||
'main',
|
'main',
|
||||||
'compressor',
|
|
||||||
'djangorestframework',
|
|
||||||
'rest_api',
|
'rest_api',
|
||||||
'south',
|
|
||||||
'document_signatures',
|
'document_signatures',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user