2 from paths import PROJECT_DIR
5 MEDIA_ROOT = path.join(PROJECT_DIR, 'var/media/')
7 STATIC_ROOT = path.join(PROJECT_DIR, 'var/static/')
8 STATIC_URL = '/static/'
10 STATICFILES_FINDERS = (
11 'django.contrib.staticfiles.finders.FileSystemFinder',
12 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
13 # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
16 STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
17 PIPELINE_CSS_COMPRESSOR = None
18 PIPELINE_JS_COMPRESSOR = None
24 'output_filename': 'compressed/base.css',
31 'output_filename': 'compressed/base.js',
35 PIPELINE_COMPILERS = (
36 'pipeline.compilers.sass.SASSCompiler',
39 PIPELINE_STORAGE = 'pipeline.storage.PipelineFinderStorage'