Browse Source

Adjust static files settings

pull/6/head
Marcio Mazza 10 years ago
parent
commit
e916cac054
  1. 2
      .gitignore
  2. 25
      sapl/settings.py

2
.gitignore

@ -77,6 +77,6 @@ target/
*.sublime-workspace
# specific to this project
static
collected_static
bower
bower_components

25
sapl/settings.py

@ -10,10 +10,10 @@ For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.8/ref/settings/
"""
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
from unipath import Path
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
BASE_DIR = Path(__file__).ancestor(2)
# Quick-start development settings - unsuitable for production
@ -117,26 +117,25 @@ LOCALE_PATHS = (
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.8/howto/static-files/
STATIC_URL = '/static/'
STATIC_ROOT = BASE_DIR.child("collected_static")
STATICFILES_DIRS = (
os.path.join(BASE_DIR, "static"),
BASE_DIR.child("static"),
)
DAB_FIELD_RENDERER = \
'django_admin_bootstrapped.renderers.BootstrapFieldRenderer'
CRISPY_TEMPLATE_PACK = 'foundation-5'
CRISPY_FAIL_SILENTLY = not DEBUG
BOWER_COMPONENTS_ROOT = os.path.join(BASE_DIR, "bower")
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'djangobower.finders.BowerFinder',
)
MEDIA_ROOT = BASE_DIR.child("media")
DAB_FIELD_RENDERER = \
'django_admin_bootstrapped.renderers.BootstrapFieldRenderer'
CRISPY_TEMPLATE_PACK = 'foundation-5'
CRISPY_FAIL_SILENTLY = not DEBUG
BOWER_COMPONENTS_ROOT = BASE_DIR.child("bower")
BOWER_INSTALLED_APPS = (
'foundation',
'foundation-datepicker',

Loading…
Cancel
Save