initial commit
[edumed.git] / edumed / settings.d / 50-static.py
1 MEDIA_ROOT = path.join(PROJECT_DIR, 'media/')
2 MEDIA_URL = '/media/'
3 STATIC_ROOT = path.join(PROJECT_DIR, 'static/')
4 STATIC_URL = '/static/'
5
6 STATICFILES_FINDERS = (
7     'django.contrib.staticfiles.finders.FileSystemFinder',
8     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
9 #    'django.contrib.staticfiles.finders.DefaultStorageFinder',
10 )
11
12 STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
13 PIPELINE_CSS_COMPRESSOR = None
14 PIPELINE_JS_COMPRESSOR = None
15 PIPELINE_CSS = {
16     'base': {
17         'source_filenames': (
18           'css/base.scss',
19           'css/main.scss',
20           'catalogue/css/carousel.scss',
21         ),
22         'output_filename': 'compressed/base.css',
23     },
24 }
25 PIPELINE_JS = {
26     'base': {
27         'source_filenames': (
28         ),
29         'output_filename': 'compressed/base.js',
30     },
31 }
32
33 PIPELINE_COMPILERS = (
34   'pipeline.compilers.sass.SASSCompiler',
35 )
36
37 PIPELINE_STORAGE = 'pipeline.storage.PipelineFinderStorage'