4 MEDIA_ROOT = path.join(PROJECT_DIR, 'media/')
6 STATIC_ROOT = path.join(PROJECT_DIR, 'static/')
7 STATIC_URL = '/static/'
9 STATICFILES_FINDERS = (
10 'django.contrib.staticfiles.finders.FileSystemFinder',
11 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
12 # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
15 STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
16 PIPELINE_CSS_COMPRESSOR = None
17 PIPELINE_JS_COMPRESSOR = None
23 'output_filename': 'compressed/base.css',
30 'output_filename': 'compressed/base.js',
34 PIPELINE_COMPILERS = (
35 'pipeline.compilers.sass.SASSCompiler',
38 PIPELINE_STORAGE = 'pipeline.storage.PipelineFinderStorage'