- Fixed: call to local.local_settings module. - Added: TEMPLATE_CONTEXT_PROCESSORS tuple, django 1.7 requirement. - Added: SITE_ID variable. - Added: 'django.contrib.sites' to INSTALLED_APPS tuple for django 1.7 compatibility. - Fixed: Languages code settings. Signed-off-by: rscnt <rascnt@gmail.com>
163 lines
4.3 KiB
Python
163 lines
4.3 KiB
Python
"""
|
|
Copyright 2015 Ungleich.
|
|
"""
|
|
|
|
# -*- coding: utf-8 -*-
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
import os
|
|
import logging
|
|
import django.db.backends.postgresql_psycopg2
|
|
|
|
|
|
gettext = lambda s: s
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
|
|
|
|
SITE_ID = 4047
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = 'xlhyv_l5-z6e8_@q6)n0up1a0$5-aad7d)om2t8g$bi6*@q44i'
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = False
|
|
|
|
ALLOWED_HOSTS = [
|
|
".ungleich.ch",
|
|
"digital.glarus.ungleich.ch" ]
|
|
|
|
|
|
# Application definition
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'django.contrib.sites',
|
|
'digital_glarus',
|
|
'cms', # django CMS itself
|
|
'treebeard', # utilities for implementing a tree
|
|
'menus', # helper for model independent hierarchical website navigation
|
|
'sekizai', # for javascript and css management
|
|
'djangocms_admin_style', # for the admin skin. You **must** add 'djangocms_admin_style' in the list **before** 'django.contrib.admin'.
|
|
#django-cms plugins
|
|
'djangocms_flash',
|
|
'djangocms_googlemap',
|
|
'djangocms_inherit',
|
|
'djangocms_link',
|
|
'djangocms_snippet',
|
|
'djangocms_teaser',
|
|
#django-filer
|
|
'cmsplugin_filer_file',
|
|
'cmsplugin_filer_folder',
|
|
'cmsplugin_filer_link',
|
|
'cmsplugin_filer_teaser',
|
|
'cmsplugin_filer_video',
|
|
# versioning
|
|
'reversion',
|
|
#ck-editor
|
|
'djangocms_text_ckeditor',
|
|
# djangocms-blog
|
|
'filer',
|
|
'easy_thumbnails',
|
|
'cmsplugin_filer_image',
|
|
'parler',
|
|
'taggit',
|
|
'taggit_autosuggest',
|
|
'django_select2',
|
|
'meta',
|
|
'meta_mixin',
|
|
'admin_enhancer',
|
|
'djangocms_blog'
|
|
|
|
)
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
'django.middleware.security.SecurityMiddleware',
|
|
)
|
|
|
|
ROOT_URLCONF = 'dynamicweb.urls'
|
|
|
|
TEMPLATES = [
|
|
{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [],
|
|
'APP_DIRS': True,
|
|
'OPTIONS': {
|
|
'context_processors': [
|
|
'django.template.context_processors.debug',
|
|
'django.template.context_processors.request',
|
|
'django.contrib.auth.context_processors.auth',
|
|
'django.contrib.messages.context_processors.messages',
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
WSGI_APPLICATION = 'dynamicweb.wsgi.application'
|
|
|
|
# Deprecated since version 1.8.
|
|
# callables take a request object as their argument and return a dictionary of
|
|
# items to be merged into the context.
|
|
TEMPLATE_CONTEXT_PROCESSORS = (
|
|
"django.contrib.auth.context_processors.auth",
|
|
"django.template.context_processors.debug",
|
|
"django.template.context_processors.i18n",
|
|
"django.template.context_processors.media",
|
|
"django.template.context_processors.static",
|
|
"django.template.context_processors.tz",
|
|
"django.contrib.messages.context_processors.messages",
|
|
"django.core.context_processors.request",
|
|
)
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/1.8/ref/settings/#databases
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
'NAME': 'app',
|
|
}
|
|
}
|
|
|
|
# Internationalization
|
|
# https://docs.djangoproject.com/en/1.7/topics/i18n/
|
|
|
|
LANGUAGES = (
|
|
('en', 'English'),
|
|
)
|
|
|
|
LANGUAGE_CODE = 'en'
|
|
|
|
TIME_ZONE = 'UTC'
|
|
|
|
USE_I18N = True
|
|
|
|
USE_L10N = True
|
|
|
|
USE_TZ = True
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# https://docs.djangoproject.com/en/1.7/howto/static-files/
|
|
|
|
STATIC_URL = '/static/'
|
|
|
|
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
|
|
|
|
|
|
try:
|
|
from .local.local_settings import *
|
|
except ImportError:
|
|
logging.warning("No local_settings file found.")
|