1 # -*- coding: utf-8 -*-
4 from .paths import PROJECT_DIR
6 MEDIA_ROOT = os.path.join(PROJECT_DIR, 'media/')
8 STATIC_ROOT = os.path.join(PROJECT_DIR, 'static/')
9 STATIC_URL = '/static/'
11 STATICFILES_FINDERS = (
12 'django.contrib.staticfiles.finders.FileSystemFinder',
13 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
14 # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
17 STATICFILES_STORAGE = 'fnpdjango.utils.pipeline_storage.GzipPipelineCachedStorage'
18 PIPELINE_CSS_COMPRESSOR = None
19 PIPELINE_JS_COMPRESSOR = None
26 'catalogue/css/layout.scss',
27 'catalogue/css/exercise.scss',
28 'jquery/colorbox/colorbox.css',
29 'fnpdjango/annoy/annoy.css',
31 'output_filename': 'compressed/base.css',
37 'jquery/colorbox/jquery.colorbox-min.js',
38 'jquery/colorbox/jquery.colorbox-pl.js',
39 'jquery/jquery.cycle.all.js',
40 'catalogue/js/edumed.js',
41 'sponsors/js/sponsors.js',
43 'fnpdjango/annoy/annoy.js',
46 'output_filename': 'compressed/base.js',
50 'js/jquery-ui-1.10.0.custom.js',
55 'output_filename': 'compressed/wtem.js'
59 PIPELINE_COMPILERS = (
60 'pipeline.compilers.sass.SASSCompiler',