kopia lustrzana https://github.com/rtts/django-simplecms
117 wiersze
3.0 KiB
Python
117 wiersze
3.0 KiB
Python
import os, random, string
|
|
try:
|
|
import uwsgi
|
|
DEBUG = False
|
|
except ImportError:
|
|
DEBUG = True
|
|
|
|
PROJECT_NAME = 'example'
|
|
KEYFILE = f'/tmp/{PROJECT_NAME}.secret'
|
|
ADMINS = [('JJ Vens', 'jj@rtts.eu')]
|
|
ALLOWED_HOSTS = ['*']
|
|
ROOT_URLCONF = 'project.urls'
|
|
WSGI_APPLICATION = 'project.wsgi.application'
|
|
LANGUAGE_CODE = 'nl'
|
|
TIME_ZONE = 'Europe/Amsterdam'
|
|
USE_I18N = True
|
|
USE_L10N = True
|
|
USE_TZ = True
|
|
STATIC_URL = '/static/'
|
|
STATIC_ROOT = '/srv/' + PROJECT_NAME + '/static'
|
|
MEDIA_URL = '/media/'
|
|
MEDIA_ROOT = '/srv/' + PROJECT_NAME + '/media'
|
|
LOGIN_REDIRECT_URL = '/'
|
|
CMS_SECTION_MODEL = 'app.Section'
|
|
|
|
def read(file):
|
|
with open(file) as f:
|
|
return f.read()
|
|
def write(file, content):
|
|
with open(file, 'w') as f:
|
|
f.write(content)
|
|
try:
|
|
SECRET_KEY = read(KEYFILE)
|
|
except IOError:
|
|
SECRET_KEY = ''.join(random.choice(string.printable) for x in range(50))
|
|
write(KEYFILE, SECRET_KEY)
|
|
|
|
SECTION_TYPES = [
|
|
('TextSection', 'Tekst'),
|
|
('ImageSection', 'Afbeelding'),
|
|
]
|
|
|
|
SECTION_COLORS = [
|
|
(1, 'Wit'),
|
|
]
|
|
|
|
CKEDITOR_CONFIGS = {
|
|
'default': {
|
|
'removePlugins': 'elementspath',
|
|
'extraPlugins': 'format',
|
|
'width': '100%',
|
|
'toolbar': 'Custom',
|
|
# 'contentsCss': STATIC_URL + 'ckeditor.css',
|
|
# 'allowedContent': True, # this allows iframes, embeds, scripts, etc...
|
|
'toolbar_Custom': [
|
|
['Format'],
|
|
['Bold', 'Italic', 'Underline', 'TextColor'],
|
|
['NumberedList', 'BulletedList', 'Blockquote'],
|
|
['JustifyLeft', 'JustifyCenter', 'JustifyRight'],
|
|
['Link', 'Unlink'],
|
|
['RemoveFormat', 'Source'],
|
|
],
|
|
}
|
|
}
|
|
|
|
INSTALLED_APPS = [
|
|
'app',
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'cms',
|
|
'simplesass',
|
|
'ckeditor',
|
|
'polymorphic',
|
|
'embed_video',
|
|
'easy_thumbnails',
|
|
'django_extensions',
|
|
]
|
|
|
|
MIDDLEWARE = [
|
|
'simplesass.middleware.SimpleSassMiddleware',
|
|
'django.middleware.security.SecurityMiddleware',
|
|
'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',
|
|
]
|
|
|
|
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',
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql',
|
|
'USER': PROJECT_NAME,
|
|
'NAME': PROJECT_NAME,
|
|
}
|
|
}
|