-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
EOA User
committed
Jun 8, 2020
1 parent
2cd26a2
commit 7c67b0d
Showing
1 changed file
with
218 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,218 @@ | ||
""" | ||
Django settings for eoa project. | ||
Generated by 'django-admin startproject' using Django 2.2. | ||
For more information on this file, see | ||
https://docs.djangoproject.com/en/2.2/topics/settings/ | ||
For the full list of settings and their values, see | ||
https://docs.djangoproject.com/en/2.2/ref/settings/ | ||
""" | ||
|
||
import os | ||
|
||
DATA_DIR = os.path.dirname(os.path.dirname(__file__)) | ||
gettext = lambda s: s | ||
|
||
# Build paths inside the project like this: os.path.join(BASE_DIR, ...) | ||
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/2.2/howto/deployment/checklist/ | ||
|
||
# SECURITY WARNING: keep the secret key used in production secret! | ||
SECRET_KEY = '+n=px9r7thf$ya+!b0c%61!qnfpmhw1oy3=_#y$6^1ko&=&coa' | ||
|
||
# SECURITY WARNING: don't run with debug turned on in production! | ||
DEBUG = True | ||
|
||
ALLOWED_HOSTS = [] | ||
|
||
|
||
# Application definition | ||
|
||
INSTALLED_APPS = [ | ||
'djangocms_admin_style', | ||
'django.contrib.auth', | ||
'django.contrib.contenttypes', | ||
'django.contrib.sessions', | ||
'django.contrib.admin', | ||
'django.contrib.sites', | ||
'django.contrib.sitemaps', | ||
'django.contrib.staticfiles', | ||
'django.contrib.messages', | ||
'cms', | ||
'menus', | ||
'sekizai', | ||
'treebeard', | ||
'djangocms_text_ckeditor', | ||
'filer', | ||
'easy_thumbnails', | ||
'djangocms_file', | ||
'djangocms_link', | ||
'djangocms_picture', | ||
'djangocms_style', | ||
'djangocms_snippet', | ||
'djangocms_video', | ||
|
||
|
||
'eoapp', | ||
'eoapublications', | ||
'eoaforthcoming', | ||
'eoaseries', | ||
'eoaauthors', | ||
'opds', | ||
] | ||
|
||
MIDDLEWARE = [ | ||
'cms.middleware.utils.ApphookReloadMiddleware', | ||
'django.contrib.sessions.middleware.SessionMiddleware', | ||
'django.middleware.csrf.CsrfViewMiddleware', | ||
'django.contrib.auth.middleware.AuthenticationMiddleware', | ||
'django.contrib.messages.middleware.MessageMiddleware', | ||
'django.middleware.locale.LocaleMiddleware', | ||
'django.middleware.common.CommonMiddleware', | ||
'django.middleware.clickjacking.XFrameOptionsMiddleware', | ||
'cms.middleware.user.CurrentUserMiddleware', | ||
'cms.middleware.page.CurrentPageMiddleware', | ||
'cms.middleware.toolbar.ToolbarMiddleware', | ||
'cms.middleware.language.LanguageCookieMiddleware' | ||
] | ||
|
||
|
||
ROOT_URLCONF = 'eoapp.urls' | ||
|
||
|
||
TEMPLATES = [ | ||
{ | ||
'BACKEND': 'django.template.backends.django.DjangoTemplates', | ||
'DIRS': [os.path.join(BASE_DIR, 'eoapp', 'templates'),], | ||
'OPTIONS': { | ||
'context_processors': [ | ||
'django.contrib.auth.context_processors.auth', | ||
'django.contrib.messages.context_processors.messages', | ||
'django.template.context_processors.i18n', | ||
'django.template.context_processors.debug', | ||
'django.template.context_processors.request', | ||
'django.template.context_processors.media', | ||
'django.template.context_processors.csrf', | ||
'django.template.context_processors.tz', | ||
'sekizai.context_processors.sekizai', | ||
'django.template.context_processors.static', | ||
'cms.context_processors.cms_settings' | ||
], | ||
'loaders': [ | ||
'django.template.loaders.filesystem.Loader', | ||
'django.template.loaders.app_directories.Loader' | ||
], | ||
}, | ||
}, | ||
] | ||
|
||
WSGI_APPLICATION = 'eoapp.wsgi.application' | ||
|
||
|
||
# Database | ||
# https://docs.djangoproject.com/en/2.2/ref/settings/#databases | ||
|
||
DATABASES = { | ||
'default': { | ||
'CONN_MAX_AGE': 0, | ||
'ENGINE': 'django.db.backends.sqlite3', | ||
'HOST': 'localhost', | ||
'NAME': 'project.db', | ||
'PASSWORD': '', | ||
'PORT': '', | ||
'USER': '' | ||
} | ||
} | ||
|
||
|
||
# Password validation | ||
# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators | ||
|
||
AUTH_PASSWORD_VALIDATORS = [ | ||
{ | ||
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', | ||
}, | ||
{ | ||
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', | ||
}, | ||
{ | ||
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', | ||
}, | ||
{ | ||
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', | ||
}, | ||
] | ||
|
||
# Internationalization | ||
# https://docs.djangoproject.com/en/2.2/topics/i18n/ | ||
|
||
LANGUAGE_CODE = 'en' | ||
|
||
TIME_ZONE = 'Europe/Berlin' | ||
|
||
USE_I18N = True | ||
|
||
USE_L10N = True | ||
|
||
USE_TZ = True | ||
|
||
|
||
LANGUAGES = ( | ||
## Customize this | ||
('en', gettext('en')), | ||
) | ||
|
||
## CMS config: | ||
CMS_LANGUAGES = { | ||
## Customize this | ||
1: [ | ||
{ | ||
'code': 'en', | ||
'name': gettext('en'), | ||
'redirect_on_fallback': True, | ||
'public': True, | ||
'hide_untranslated': False, | ||
}, | ||
], | ||
'default': { | ||
'redirect_on_fallback': True, | ||
'public': True, | ||
'hide_untranslated': False, | ||
}, | ||
} | ||
|
||
CMS_TEMPLATES = ( | ||
## Customize this | ||
('fullwidth.html', 'Fullwidth'), | ||
) | ||
|
||
CMS_PERMISSION = True | ||
|
||
CMS_PLACEHOLDER_CONF = {} | ||
|
||
# Static files (CSS, JavaScript, Images) | ||
# https://docs.djangoproject.com/en/2.2/howto/static-files/ | ||
|
||
STATIC_URL = '/static/' | ||
MEDIA_URL = '/media/' | ||
MEDIA_ROOT = os.path.join(DATA_DIR, 'media') | ||
STATIC_ROOT = os.path.join(DATA_DIR, 'static') | ||
|
||
STATICFILES_DIRS = ( | ||
os.path.join(BASE_DIR, 'eoapp', 'static'), | ||
) | ||
SITE_ID = 1 | ||
|
||
MIGRATION_MODULES = { | ||
} | ||
|
||
THUMBNAIL_PROCESSORS = ( | ||
'easy_thumbnails.processors.colorspace', | ||
'easy_thumbnails.processors.autocrop', | ||
'filer.thumbnail_processors.scale_and_crop_with_subject_location', | ||
'easy_thumbnails.processors.filters' | ||
) |