JourneyJoker/urlaubsauktion/settings.py

150 lines
3.7 KiB
Python
Raw Permalink Normal View History

2019-12-22 18:16:16 +00:00
import os
2020-01-22 17:32:13 +00:00
from django.utils.translation import gettext_lazy as _
2020-01-26 10:53:25 +00:00
from django.contrib.messages import constants as messages
from urlaubsauktion.database import *
2020-01-22 17:32:13 +00:00
2019-12-22 18:16:16 +00:00
# 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 = 'g$_(44hzu#_utld_hn@yw$-x_1l-0pf2+f-3#$^5f2c(p=)nq3'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
2020-04-08 13:06:24 +00:00
ALLOWED_HOSTS = ["82499757.ngrok.io", "*"]
2020-02-07 14:57:30 +00:00
PROTOCOL = "http"
2019-12-22 18:16:16 +00:00
2020-02-07 14:57:30 +00:00
BASE_URL = PROTOCOL + "://" + ALLOWED_HOSTS[0]
2019-12-22 18:16:16 +00:00
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
2019-12-24 13:41:49 +00:00
'payment',
'dbsettings',
'auction',
2020-01-22 17:32:13 +00:00
'frontend',
'offers',
'profiles',
2019-12-24 13:41:49 +00:00
'django_countries',
'phonenumber_field',
2020-01-22 17:32:13 +00:00
'bootstrapform',
'multiselectfield',
2019-12-22 18:16:16 +00:00
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
2020-01-22 17:32:13 +00:00
'django.middleware.locale.LocaleMiddleware',
2019-12-22 18:16:16 +00:00
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'urlaubsauktion.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
2020-01-22 17:32:13 +00:00
'DIRS': [ os.path.join(BASE_DIR, "templates") ],
2019-12-22 18:16:16 +00:00
'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 = 'urlaubsauktion.wsgi.application'
# Database
# https://docs.djangoproject.com/en/2.2/ref/settings/#databases
DATABASES = {
'default': {
2020-01-22 17:32:13 +00:00
'ENGINE': 'django.contrib.gis.db.backends.mysql',
2020-01-26 10:53:25 +00:00
'NAME': DATABASE_NAME,
'USER': DATABASE_USER,
'PASSWORD': DATABASE_PASS,
'HOST': DATABASE_HOST,
'PORT': DATABASE_PORT,
2019-12-22 18:16:16 +00:00
}
}
# 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/
2020-01-22 17:32:13 +00:00
LANGUAGE_CODE = 'de'
LANGUAGES = [
2020-01-26 10:53:25 +00:00
('de', _('Deutsch')),
('en', _('Englisch')),
]
CURRENCIES = [
('EUR', _("Euro"))
2020-01-22 17:32:13 +00:00
]
2019-12-22 18:16:16 +00:00
2020-01-22 17:32:13 +00:00
TIME_ZONE = 'Europe/Vienna'
2019-12-22 18:16:16 +00:00
2020-04-08 13:21:07 +00:00
USE_I18N = False
2019-12-22 18:16:16 +00:00
2020-04-08 13:06:24 +00:00
USE_L10N = False
2019-12-22 18:16:16 +00:00
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.2/howto/static-files/
STATIC_URL = '/static/'
2019-12-24 13:41:49 +00:00
2020-01-22 17:32:13 +00:00
STATICFILES_DIRS = [
os.path.join(BASE_DIR, "static"),
]
2020-01-26 10:53:25 +00:00
MESSAGE_TAGS = {
messages.ERROR: 'danger'
}
2020-02-07 14:57:30 +00:00
2020-04-08 14:07:43 +00:00
DATE_INPUT_FORMATS = ["%d.%m.%Y"]
2020-04-08 13:21:07 +00:00
DATETIME_FORMAT = 'd.m.Y'
DATE_FORMAT = 'd.m.Y'