summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/settings.py b/settings.py
index 2ca915b..f4f96cf 100644
--- a/settings.py
+++ b/settings.py
@@ -15,6 +15,7 @@ SQL_DEBUG = False
ROOT_PATH = os.path.realpath(os.path.dirname(__file__)) + "/"
MAIN_INDEX = "chimere:index"
+EXTRA_APPS = []
# Django settings for chimere project.
PROJECT_NAME = 'Chimere'
@@ -285,6 +286,9 @@ ROOT_URLCONF = PROJECT_APP + '.urls'
INSTALLED_APPS.insert(INSTALLED_APPS.index('chimere'), PROJECT_APP)
+for app in EXTRA_APPS:
+ INSTALLED_APPS.append(app)
+
if CHIMERE_SEARCH_ENGINE:
INSTALLED_APPS.append('haystack')