adapt to new migdal and fnpdjango
[prawokultury.git] / prawokultury / 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 = 'fnpdjango.pipeline_storage.GzipPipelineCachedStorage'
13 PIPELINE_CSS_COMPRESSOR = None
14 PIPELINE_JS_COMPRESSOR = None
15 PIPELINE_CSS = {
16     'base': {
17         'source_filenames': (
18           'css/base.scss',
19           'css/layout.scss',
20           'css/header.scss',
21           'css/menu.scss',
22           'css/search.scss',
23           'css/sidebar.scss',
24           'css/promobox.scss',
25           'css/entry.scss',
26           'css/footer.scss',
27           'css/prevnext.scss',
28           'css/forms.scss',
29           'events/events.scss',
30           'fnpdjango/annoy/annoy.css',
31         ),
32         'output_filename': 'compressed/base.css',
33     },
34     'questions': {
35         'source_filenames': (
36             'questions/tagcloud.scss',
37         ),
38         'output_filename': 'compressed/questions.css'
39     }
40 }
41 PIPELINE_JS = {
42     'base': {
43         'source_filenames': (
44             'js/promobox.js',
45             'shop/shop.js',
46             'fnpdjango/annoy/annoy.js',
47         ),
48         'output_filename': 'compressed/base.js',
49     },
50     'questions': {
51         'source_filenames': (
52             'questions/tagcloud.js',
53         ),
54         'output_filename': 'compressed/questions.js'
55     }
56 }
57
58 PIPELINE_COMPILERS = (
59   'pipeline.compilers.sass.SASSCompiler',
60 )
61
62 PIPELINE_STORAGE = 'pipeline.storage.PipelineFinderStorage'