This repository has been archived by the owner on Dec 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsettings.py
332 lines (272 loc) · 9.21 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
"""
Django settings for this project.
Generated by 'django-admin startproject' using Django 1.8.8.
For more information on this file, see
https://docs.djangoproject.com/en/1.8/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.8/ref/settings/
"""
from django.utils.translation import ugettext_lazy as _
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
DATA_DIR = os.path.join(BASE_DIR, 'data')
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'y&+f+)tw5sqkcy$@vwh8cy%y^9lwytqtn*y=lv7f9t39b(cufx'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = ['*']
# Enable this to additionally show the debug toolbar
# INTERNAL_IPS = ['localhost', '127.0.0.1']
# Application definition
INSTALLED_APPS = (
# djangocms_admin_style needs to be before django.contrib.admin!
# https://django-cms.readthedocs.org/en/develop/how_to/install.html#configuring-your-project-for-django-cms
'djangocms_admin_style',
# django defaults
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# django CMS additions
'django.contrib.sites',
'cms',
'treebeard',
'menus',
'sekizai',
'reversion',
# django CMS addons
'djangocms_text_ckeditor',
# > prerequisites for aldryn-bootstrap3
'filer',
'mptt',
'easy_thumbnails',
# > prerequisites for aldryn-newsblog
'aldryn_apphooks_config',
'aldryn_boilerplates',
'aldryn_categories',
'aldryn_people',
'aldryn_reversion',
'parler',
'sortedm2m',
'taggit',
# > prerequisites for aldryn-faq
'adminsortable2',
# > prerequisites for aldryn-events
'aldryn_common',
'appconf',
'bootstrap3',
'extended_choices',
'standard_form',
'django_tablib',
# > prerequisites for aldryn-jobs
'absolute',
'emailit',
'aldryn_translation_tools',
# > prerequisites for aldryn-forms
'captcha',
# > addons
'aldryn_bootstrap3',
'aldryn_newsblog',
'aldryn_style',
'aldryn_faq',
'aldryn_events',
'aldryn_jobs',
'aldryn_forms',
'aldryn_forms.contrib.email_notifications',
'aldryn_locations',
'cmsplugin_filer_file',
'cmsplugin_filer_folder',
'cmsplugin_filer_link',
'cmsplugin_filer_image',
'cmsplugin_filer_teaser',
'cmsplugin_filer_video',
)
MIDDLEWARE_CLASSES = (
# its recommended to place this as high as possible to enable apphooks
# to reload the page without loading unnecessary middlewares
'cms.middleware.utils.ApphookReloadMiddleware',
'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 CMS additions
'django.contrib.sites.middleware.CurrentSiteMiddleware',
'django.middleware.locale.LocaleMiddleware',
'cms.middleware.user.CurrentUserMiddleware',
'cms.middleware.page.CurrentPageMiddleware',
'cms.middleware.toolbar.ToolbarMiddleware',
'cms.middleware.language.LanguageCookieMiddleware',
)
ROOT_URLCONF = 'src.urls'
WSGI_APPLICATION = 'src.wsgi.application'
# Templates
# https://docs.djangoproject.com/en/1.8/ref/settings/#templates
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
os.path.join(BASE_DIR, 'templates'),
],
'APP_DIRS': False,
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.debug',
'django.core.context_processors.i18n',
'django.core.context_processors.media',
'django.core.context_processors.static',
'django.core.context_processors.tz',
'django.contrib.messages.context_processors.messages',
# django CMS additions
'django.core.context_processors.request',
'sekizai.context_processors.sekizai',
'cms.context_processors.cms_settings',
# aldryn-newsblog
'aldryn_boilerplates.context_processors.boilerplate',
],
'loaders': [
'django.template.loaders.filesystem.Loader',
# aldryn-bpolerplates needs the following line to be placed exactly there
'aldryn_boilerplates.template_loaders.AppDirectoriesLoader',
'django.template.loaders.app_directories.Loader',
# django CMS additions
'django.template.loaders.eggs.Loader',
],
'debug': DEBUG,
},
},
]
# Database
# https://docs.djangoproject.com/en/1.8/ref/settings/#databases
# we use os.getenv to be able to override the default database settings for the docker setup
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': os.getenv('DB_NAME', 'djangocms_demo_local'),
'HOST': os.getenv('DB_HOST', 'localhost'),
'USER': os.getenv('DB_USER', 'postgres'),
'PASSWORD': os.getenv('DB_PASSWORD', ''),
'PORT': os.getenv('DB_PORT', ''),
},
}
# Internationalization
# https://docs.djangoproject.com/en/1.8/topics/i18n/
LANGUAGE_CODE = 'en'
TIME_ZONE = 'Europe/London'
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/'
# we need to add additional configuration for filer etc.
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(DATA_DIR, 'media')
STATIC_ROOT = os.path.join(DATA_DIR, 'static_collected')
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)
# django CMS settings
# http://docs.django-cms.org/en/latest/
SITE_ID = 1
CMS_PERMISSION = True
CMS_PLACEHOLDER_CONF = {}
# django CMS internationalization
# http://docs.django-cms.org/en/latest/topics/i18n.html
LANGUAGES = (
('en', _('English')),
('de', _('Deutsch')),
)
PARLER_LANGUAGES = {
'default': {
'hide_untranslated': False,
'redirect_on_fallback': True,
},
1: [
{
'code': 'en',
'hide_untranslated': False,
'redirect_on_fallback': True,
},
{
'code': 'de',
'hide_untranslated': False,
'redirect_on_fallback': True,
},
],
}
CMS_LANGUAGES = {
# Customize this
'default': {
'public': True,
'hide_untranslated': False,
'redirect_on_fallback': True,
},
1: [
{
'public': True,
'code': 'en',
'hide_untranslated': False,
'name': _('English'),
'redirect_on_fallback': True,
},
{
'public': True,
'code': 'de',
'hide_untranslated': False,
'name': _('German'),
'redirect_on_fallback': True,
},
],
}
# django CMS templates
# http://docs.django-cms.org/en/latest/how_to/templates.html
CMS_TEMPLATES = (
# Customize this
('fullwidth.html', 'Fullwidth'),
('sidebar_left.html', 'Sidebar Left'),
('sidebar_right.html', 'Sidebar Right'),
('tpl_home.html', 'Home Template'),
)
# aldryn-newsblog required configurations
# DOCS: https://pypi.python.org/pypi/aldryn-boilerplates/
STATICFILES_FINDERS = [
'django.contrib.staticfiles.finders.FileSystemFinder',
# aldryn-bpolerplates needs the following line to be placed exactly there
'aldryn_boilerplates.staticfile_finders.AppDirectoriesFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
]
THUMBNAIL_PROCESSORS = (
'easy_thumbnails.processors.colorspace',
'easy_thumbnails.processors.autocrop',
# aldryn-newsblog neews to override the default scale_and_crop
# 'easy_thumbnails.processors.scale_and_crop',
'filer.thumbnail_processors.scale_and_crop_with_subject_location',
'easy_thumbnails.processors.filters',
'easy_thumbnails.processors.background',
)
ALDRYN_BOILERPLATE_NAME = 'bootstrap3'
# aldryn-style required configurations
# DOCS: https://github.com/aldryn/aldryn-style
ALDRYN_STYLE_CLASS_NAMES = (
('container', _('bootstrap container')),
)
# djangocms-ckeditor-settings additional configuration
# DOCS: https://github.com/divio/djangocms-text-ckeditor
CKEDITOR_SETTINGS = {
'stylesSet': 'default:/static/js/addons/ckeditor.wysiwyg.js',
'contentsCss': ['/static/css/base.css'],
}
# aldryn-locations google map API key
# DOCS: https://github.com/aldryn/aldryn-locations
ALDRYN_LOCATIONS_GOOGLEMAPS_APIKEY = 'AIzaSyAPRlT90_MNog80v7Q2tlDPeJzJdzlM1oc'
# CMS Wizard
CMS_PAGE_WIZARD_CONTENT_PLACEHOLDER = 'content'