Created
March 6, 2015 15:36
-
-
Save pmclanahan/13eb201e237db7a1f253 to your computer and use it in GitHub Desktop.
Test Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Django settings for staticfiles_bug_test project. | |
For more information on this file, see | |
https://docs.djangoproject.com/en/1.6/topics/settings/ | |
For the full list of settings and their values, see | |
https://docs.djangoproject.com/en/1.6/ref/settings/ | |
""" | |
# Build paths inside the project like this: os.path.join(BASE_DIR, ...) | |
import os | |
BASE_DIR = os.path.dirname(os.path.dirname(__file__)) | |
path = lambda *x: os.path.join(BASE_DIR, *x) | |
# Quick-start development settings - unsuitable for production | |
# See https://docs.djangoproject.com/en/1.6/howto/deployment/checklist/ | |
# SECURITY WARNING: keep the secret key used in production secret! | |
SECRET_KEY = 'x$pcm%7^a-l-q5m!h=ky-m8!tei#$um35v#lzw^#n!d_j1oy))' | |
# SECURITY WARNING: don't run with debug turned on in production! | |
DEBUG = True | |
TEMPLATE_DEBUG = True | |
ALLOWED_HOSTS = [] | |
MEDIA_URL = '/user-media/' | |
STATIC_URL = '/media/' | |
STATIC_ROOT = path('static') | |
STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.CachedStaticFilesStorage' | |
STATICFILES_FINDERS = ( | |
'django.contrib.staticfiles.finders.FileSystemFinder', | |
'django.contrib.staticfiles.finders.AppDirectoriesFinder', | |
# 'pipeline.finders.CachedFileFinder', | |
# 'pipeline.finders.PipelineFinder', | |
) | |
STATICFILES_DIRS = (path('media'),) | |
PIPELINE_DISABLE_WRAPPER = True | |
PIPELINE_JS_COMPRESSOR = 'pipeline.compressors.uglifyjs.UglifyJSCompressor' | |
PIPELINE_UGLIFYJS_BINARY = path('node_modules', 'uglify-js', 'bin', 'uglifyjs') | |
PIPELINE_CSS_COMPRESSOR = 'pipeline.compressors.cssmin.CSSMinCompressor' | |
PIPELINE_CSSMIN_BINARY = path('node_modules', 'cssmin', 'bin', 'cssmin') | |
PIPELINE_CSS = { | |
'test': { | |
'source_filenames': ('css/test.css',), | |
'output_filename': 'test-bundle.css', | |
} | |
} | |
# Application definition | |
INSTALLED_APPS = ( | |
'django.contrib.admin', | |
'django.contrib.auth', | |
'django.contrib.contenttypes', | |
'django.contrib.sessions', | |
'django.contrib.messages', | |
'django.contrib.staticfiles', | |
'pipeline', | |
) | |
MIDDLEWARE_CLASSES = ( | |
'django.contrib.sessions.middleware.SessionMiddleware', | |
'django.middleware.common.CommonMiddleware', | |
'django.middleware.csrf.CsrfViewMiddleware', | |
'django.contrib.auth.middleware.AuthenticationMiddleware', | |
'django.contrib.messages.middleware.MessageMiddleware', | |
'django.middleware.clickjacking.XFrameOptionsMiddleware', | |
) | |
ROOT_URLCONF = 'staticfiles_bug_test.urls' | |
WSGI_APPLICATION = 'staticfiles_bug_test.wsgi.application' | |
# Database | |
# https://docs.djangoproject.com/en/1.6/ref/settings/#databases | |
DATABASES = { | |
'default': { | |
'ENGINE': 'django.db.backends.sqlite3', | |
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), | |
} | |
} | |
# Internationalization | |
# https://docs.djangoproject.com/en/1.6/topics/i18n/ | |
LANGUAGE_CODE = 'en-us' | |
TIME_ZONE = 'UTC' | |
USE_I18N = True | |
USE_L10N = True | |
USE_TZ = True | |
# Static files (CSS, JavaScript, Images) | |
# https://docs.djangoproject.com/en/1.6/howto/static-files/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment