This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/blog/settings.py

178 lines
4.9 KiB
Python
Raw Normal View History

2020-08-14 14:53:30 +02:00
"""
Django settings for blog project.
Generated by 'django-admin startproject' using Django 3.1.
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/
"""
2020-08-17 08:23:00 +02:00
import os
2020-08-14 14:53:30 +02:00
from pathlib import Path
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve(strict=True).parent.parent
# 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!
2020-08-17 08:23:00 +02:00
SECRET_KEY = os.getenv(
"SECRET_KEY", "s#!83!8e$3s89m)r$1ghsgxbndf8=#^qt(_*o%xbq0j2t8#db5"
)
2020-08-14 14:53:30 +02:00
admins = os.getenv("ADMINS", "")
if admins:
ADMINS = list(map(lambda x: tuple(x.split(",")), admins.split(";")))
2020-08-19 12:13:44 +02:00
DEFAULT_FROM_EMAIL = "Gab's Notes <blog@mg.gabnotes.org>"
SERVER_EMAIL = "Gab's Notes <blog@mg.gabnotes.org>"
EMAIL_SUBJECT_PREFIX = "[Blog] "
EMAIL_TIMEOUT = 30
2020-08-19 12:13:44 +02:00
ANYMAIL = {
"MAILGUN_API_KEY": os.getenv("MAILGUN_API_KEY", ""),
"MAILGUN_SENDER_DOMAIN": os.getenv("MAILGUN_SENDER_DOMAIN", ""),
"MAILGUN_API_URL": "https://api.eu.mailgun.net/v3",
}
EMAIL_BACKEND = "anymail.backends.mailgun.EmailBackend"
2020-08-14 14:53:30 +02:00
# SECURITY WARNING: don't run with debug turned on in production!
2020-08-17 08:23:00 +02:00
DEBUG = os.getenv("DEBUG", "true").lower() == "true"
2020-08-18 10:39:25 +02:00
TESTING = os.getenv("TESTING", "false").lower() == "true"
2020-08-14 14:53:30 +02:00
2020-08-21 13:50:17 +02:00
ALLOWED_HOSTS = ["localhost"] # Required for healthcheck
if DEBUG:
2020-08-21 13:50:17 +02:00
ALLOWED_HOSTS.extend(["127.0.0.1"])
HOSTS = os.getenv("HOSTS")
if HOSTS:
ALLOWED_HOSTS.extend(HOSTS.split(";"))
2020-08-14 14:53:30 +02:00
2020-08-21 13:40:02 +02:00
SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https")
SESSION_COOKIE_SECURE = not DEBUG
CSRF_COOKIE_SECURE = not DEBUG
2020-08-14 14:53:30 +02:00
# Application definition
INSTALLED_APPS = [
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
2020-08-14 15:53:42 +02:00
"articles",
2020-08-26 19:04:48 +02:00
"attachments",
2020-08-19 12:13:44 +02:00
"anymail",
2020-08-14 14:53:30 +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",
]
ROOT_URLCONF = "blog.urls"
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",
2020-08-17 09:57:24 +02:00
"articles.context_processors.pages",
2020-08-18 14:23:51 +02:00
"articles.context_processors.drafts_count",
"articles.context_processors.date_format",
2020-08-14 14:53:30 +02:00
],
},
},
]
WSGI_APPLICATION = "blog.wsgi.application"
# Database
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases
2020-08-17 08:23:00 +02:00
DB_BASE_DIR = os.getenv("DB_BASE_DIR", BASE_DIR)
if not DB_BASE_DIR:
# Protect against empty strings
DB_BASE_DIR = BASE_DIR
else:
DB_BASE_DIR = Path(DB_BASE_DIR).resolve(strict=True)
2020-08-14 14:53:30 +02:00
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
2020-08-17 08:23:00 +02:00
"NAME": DB_BASE_DIR / "db.sqlite3",
2020-08-14 14:53:30 +02:00
}
}
# Password validation
# https://docs.djangoproject.com/en/3.1/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/3.1/topics/i18n/
LANGUAGE_CODE = "en-us"
2020-08-14 15:53:42 +02:00
TIME_ZONE = "Europe/Paris"
2020-08-14 14:53:30 +02:00
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.1/howto/static-files/
STATIC_URL = "/static/"
STATIC_ROOT = BASE_DIR / "staticfiles"
2020-08-18 08:08:07 +02:00
if TESTING:
# ManifestStaticFilesStorage requires collectstatic to be run
# and collectstatic is not run for tests
STATICFILES_STORAGE = "django.contrib.staticfiles.storage.StaticFilesStorage"
else:
STATICFILES_STORAGE = (
"django.contrib.staticfiles.storage.ManifestStaticFilesStorage"
)
2020-08-14 14:53:30 +02:00
2020-08-26 19:04:48 +02:00
MEDIA_URL = "/media/"
MEDIA_ROOT = BASE_DIR / "media"
2020-08-14 14:53:30 +02:00
AUTH_USER_MODEL = "articles.User"
2020-08-16 19:24:31 +02:00
BLOG = {
"title": "Gab's Notes",
2020-08-16 19:24:31 +02:00
"description": "My take on tech-related subjects (but not only)",
2020-08-19 12:13:44 +02:00
"base_url": os.getenv("BLOG_BASE_URL", "https://gabnotes.org/"),
2020-08-16 19:24:31 +02:00
}