summaryrefslogtreecommitdiff
path: root/forums/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'forums/settings.py')
-rw-r--r--forums/settings.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/forums/settings.py b/forums/settings.py
index 2930bc0..6ab03c0 100644
--- a/forums/settings.py
+++ b/forums/settings.py
@@ -98,6 +98,7 @@ STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
+ 'compressor.finders.CompressorFinder',
)
# Make this unique, and don't share it with anybody.
@@ -146,6 +147,8 @@ INSTALLED_APPS = (
'website',
'widget_tweaks',
'drupal_auth',
+ 'compressor',
+ 'debug_toolbar',
)
# A sample logging configuration. The only tangible logging
@@ -181,3 +184,5 @@ AUTH_USER_MODEL = 'drupal_auth.Users'
AUTHENTICATION_BACKENDS = ( 'drupal_auth.backends.DrupalAuthBackend', )
DATABASE_ROUTERS = ['drupal_auth.routers.DrupalAuthRouter']
TEMPLATE_CONTEXT_PROCESSORS += ('website.context_processors.admin_processor', )
+
+COMPRESS_ENABLED = True