lostplaces-backend/django_lostplaces/django_lostplaces/settings.py

172 lines
4.4 KiB
Python
Raw Normal View History

#!/usr/bin/env python
# -*- coding: utf-8 -*-
2020-07-19 00:13:49 +02:00
"""
Django settings for lostplaces project.
!!! Instead of changing this file, you can override settings in !!!
!!! local_settings.py. That way it won't cause merge conflicts on pull. !!!
Generated by 'django-admin startproject' using Django 3.1.8.
2020-07-19 00:13:49 +02:00
For more information on this file, see
https://docs.djangoproject.com/en/3.1/topics/settings/
2020-07-19 00:13:49 +02:00
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.1/ref/settings/
2020-07-19 00:13:49 +02:00
"""
import os
2020-08-12 16:52:03 +02:00
from django.urls import reverse_lazy
from django.utils.translation import gettext_lazy as _
2020-07-19 00:13:49 +02: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/3.1/howto/deployment/checklist/
2020-07-19 00:13:49 +02:00
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'n$(bx8(^)*wz1ygn@-ekt7rl^1km*!_c+fwwjiua8m@-x_rpl0'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
2020-07-19 00:13:49 +02:00
2022-01-14 12:37:21 +01:00
ALLOWED_HOSTS = ['localhost', '127.0.0.1', '[::1]']
2020-07-19 00:13:49 +02:00
# Application definition
INSTALLED_APPS = [
'lostplaces',
2020-09-10 20:42:49 +02:00
'easy_thumbnails',
'widget_tweaks',
'taggit',
2020-07-19 00:13:49 +02:00
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
2021-10-02 01:30:53 +02:00
'django.contrib.staticfiles',
'django_nose'
]
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
NOSE_ARGS = [
'--with-coverage',
'--cover-package=lostplaces',
2020-07-19 00:13:49 +02:00
]
MIDDLEWARE = [
'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',
2020-10-01 22:10:38 +02:00
'django.middleware.locale.LocaleMiddleware',
2020-07-19 00:13:49 +02:00
]
ROOT_URLCONF = 'django_lostplaces.urls'
2020-07-19 00:13:49 +02:00
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
2020-09-10 20:42:49 +02:00
'DIRS': [],
2020-07-19 00:13:49 +02: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 = 'django_lostplaces.wsgi.application'
2020-07-19 00:13:49 +02:00
# Database
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases
2020-07-19 00:13:49 +02:00
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Password validation
# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators
2020-07-19 00:13:49 +02:00
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/
2020-07-19 00:13:49 +02:00
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
LANGUAGES = [
('de', _('German')),
('en', _('English')),
]
2020-07-19 00:13:49 +02:00
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.1/howto/static-files/
2020-07-19 00:13:49 +02:00
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
2020-07-26 22:23:55 +02:00
# Upload directory
2020-07-26 22:23:55 +02:00
MEDIA_URL = '/uploads/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'uploads/')
# Thumbnails
RELATIVE_THUMBNAIL_PATH = 'images/'
THUMBNAIL_MEDIA_ROOT = os.path.join(MEDIA_ROOT, RELATIVE_THUMBNAIL_PATH)
THUMBNAIL_MEDIA_URL = os.path.join(MEDIA_URL, RELATIVE_THUMBNAIL_PATH)
THUMBNAIL_QUALITY = 75
2020-07-28 23:03:31 +02:00
# Templates to use for authentication
2020-08-12 16:52:03 +02:00
LOGIN_URL = reverse_lazy('login')
2020-09-10 18:36:42 +02:00
LOGIN_REDIRECT_URL = reverse_lazy('lostplaces_home')
LOGOUT_REDIRECT_URL = reverse_lazy('lostplaces_home')
# Load and override settings from local_settings.py and don't fail on errors.
try:
from .local_settings import *
except ImportError:
pass