From 4ef7190a52b5abf4202f05b5e1ce66d7829870de Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Thu, 10 Nov 2011 14:52:08 -0500 Subject: [PATCH] Remove compressor --- snipt/settings.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/snipt/settings.py b/snipt/settings.py index 9070f07..5532a18 100644 --- a/snipt/settings.py +++ b/snipt/settings.py @@ -92,7 +92,6 @@ STATICFILES_DIRS = ( STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', - 'compressor.finders.CompressorFinder', ) # Make this unique, and don't share it with anybody. @@ -148,7 +147,6 @@ INSTALLED_APPS = ( 'django.contrib.admin', 'storages', - 'compressor', 'django_bcrypt', 'pagination', 'south', @@ -190,13 +188,6 @@ GRAPPELLI_ADMIN_TITLE = 'Snipt' # Virtualenv VIRTUALENV_PATH = '/Users/Nick/.virtualenvs/snipt/lib/python2.7/site-packages/' -# Compressor -COMPRESS_ENABLED = True -COMPRESS_OUTPUT_DIR = 'cache' -COMPRESS_ROOT = STATIC_ROOT -COMPRESS_URL = STATIC_URL -COMPRESS_STORAGE = STATICFILES_STORAGE - # Account settings LOGIN_REDIRECT_URL = '/' LOGIN_URL = '/login/'