228 lines
5.9 KiB
Python
228 lines
5.9 KiB
Python
"""
|
|
Django settings for konova project.
|
|
|
|
Generated by 'django-admin startproject' using Django 3.1.3.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/3.1/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/3.1/ref/settings/
|
|
"""
|
|
import os
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
|
BASE_DIR = os.path.dirname(
|
|
os.path.dirname(
|
|
os.path.dirname(
|
|
os.path.abspath(
|
|
__file__
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = '5=9-)2)h$u9=!zrhia9=lj-2#cpcb8=#$7y+)l$5tto$3q(n_+'
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = True
|
|
|
|
ADMINS = [
|
|
('KSP-Servicestelle', 'ksp-servicestelle@sgdnord.rlp.de'),
|
|
]
|
|
|
|
ALLOWED_HOSTS = [
|
|
"127.0.0.1",
|
|
"localhost",
|
|
]
|
|
|
|
# Authentication settings
|
|
LOGIN_URL = "/login/"
|
|
|
|
# Session settings
|
|
#SESSION_COOKIE_AGE = 30 * 60 # 30 minutes
|
|
#SESSION_SAVE_EVERY_REQUEST = True
|
|
|
|
# Application definition
|
|
|
|
INSTALLED_APPS = [
|
|
'dal',
|
|
'dal_select2',
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'django.contrib.gis',
|
|
'django.contrib.humanize',
|
|
'simple_sso.sso_server',
|
|
'django_tables2',
|
|
'bootstrap_modal_forms',
|
|
'fontawesome_5',
|
|
'bootstrap4',
|
|
'konova',
|
|
'compensation',
|
|
'intervention',
|
|
'news',
|
|
'user',
|
|
'ema',
|
|
'codelist',
|
|
'analysis',
|
|
'api',
|
|
]
|
|
if DEBUG:
|
|
INSTALLED_APPS += [
|
|
'debug_toolbar',
|
|
]
|
|
|
|
MIDDLEWARE = [
|
|
'django.middleware.security.SecurityMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
"django.middleware.locale.LocaleMiddleware",
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
]
|
|
if DEBUG:
|
|
MIDDLEWARE += [
|
|
"debug_toolbar.middleware.DebugToolbarMiddleware",
|
|
]
|
|
|
|
ROOT_URLCONF = 'konova.urls'
|
|
|
|
TEMPLATES = [
|
|
{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [
|
|
os.path.join(BASE_DIR, "templates"),
|
|
],
|
|
'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 = 'konova.wsgi.application'
|
|
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.contrib.gis.db.backends.postgis',
|
|
'NAME': 'konova',
|
|
'USER': 'postgres',
|
|
'HOST': '127.0.0.1',
|
|
'PORT': '5432',
|
|
}
|
|
}
|
|
|
|
|
|
# Password validation
|
|
# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators
|
|
AUTH_USER_MODEL = "user.User"
|
|
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/3.1/topics/i18n/
|
|
|
|
LANGUAGE_CODE = 'de'
|
|
LANGUAGES = [
|
|
('de', _('German')),
|
|
('en', _('English')),
|
|
]
|
|
|
|
USE_THOUSAND_SEPARATOR = True
|
|
|
|
DEFAULT_DATE_TIME_FORMAT = '%d.%m.%Y %H:%M:%S'
|
|
DEFAULT_DATE_FORMAT = '%d.%m.%Y'
|
|
|
|
TIME_ZONE = 'Europe/Berlin'
|
|
|
|
USE_I18N = True
|
|
|
|
USE_L10N = True
|
|
|
|
USE_TZ = True
|
|
|
|
LOCALE_PATHS = (
|
|
os.path.join(BASE_DIR, 'locale'),
|
|
)
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# https://docs.djangoproject.com/en/3.1/howto/static-files/
|
|
|
|
STATIC_URL = '/static/'
|
|
STATIC_ROOT = os.path.join(BASE_DIR, "static")
|
|
STATICFILES_DIRS = [
|
|
os.path.join(BASE_DIR, 'konova/static'),
|
|
]
|
|
|
|
# DJANGO DEBUG TOOLBAR
|
|
INTERNAL_IPS = [
|
|
"127.0.0.1"
|
|
]
|
|
DEBUG_TOOLBAR_CONFIG = {
|
|
"DISABLE_PANELS": {
|
|
'debug_toolbar.panels.versions.VersionsPanel',
|
|
'debug_toolbar.panels.timer.TimerPanel',
|
|
'debug_toolbar.panels.settings.SettingsPanel',
|
|
'debug_toolbar.panels.headers.HeadersPanel',
|
|
'debug_toolbar.panels.request.RequestPanel',
|
|
'debug_toolbar.panels.sql.SQLPanel',
|
|
'debug_toolbar.panels.staticfiles.StaticFilesPanel',
|
|
'debug_toolbar.panels.templates.TemplatesPanel',
|
|
'debug_toolbar.panels.cache.CachePanel',
|
|
'debug_toolbar.panels.signals.SignalsPanel',
|
|
'debug_toolbar.panels.logging.LoggingPanel',
|
|
'debug_toolbar.panels.redirects.RedirectsPanel',
|
|
'debug_toolbar.panels.profiling.ProfilingPanel',
|
|
}
|
|
}
|
|
|
|
# EMAIL (see https://docs.djangoproject.com/en/dev/topics/email/)
|
|
|
|
# CHANGE_ME !!! ONLY FOR DEVELOPMENT !!!
|
|
if DEBUG:
|
|
EMAIL_BACKEND = 'django.core.mail.backends.filebased.EmailBackend'
|
|
EMAIL_FILE_PATH = '/tmp/app-messages' # change this to a proper location
|
|
|
|
DEFAULT_FROM_EMAIL = "service@ksp.de" # The default email address for the 'from' element
|
|
SERVER_EMAIL = DEFAULT_FROM_EMAIL # The default email sender address, which is used by Django to send errors via mail
|
|
EMAIL_HOST = "localhost"
|
|
EMAIL_REPLY_TO = "ksp-servicestelle@sgdnord.rlp.de"
|
|
SUPPORT_MAIL_RECIPIENT = EMAIL_REPLY_TO
|
|
EMAIL_PORT = "25"
|
|
#EMAIL_HOST_USER = ""
|
|
#EMAIL_HOST_PASSWORD = ""
|
|
EMAIL_USE_TLS = False
|
|
EMAIL_USE_SSL = False
|