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

149 lines
4 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
# 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 08:08:07 +02:00
TESTING = os.getenv("TESTING", "true").lower() == "true"
2020-08-14 14:53:30 +02:00
2020-08-17 08:23:00 +02:00
ALLOWED_HOSTS = [
"localhost",
"127.0.0.1",
]
HOST = os.getenv("HOST")
if HOST:
ALLOWED_HOSTS.append(HOST)
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-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-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/"
2020-08-17 08:23:00 +02:00
STATIC_ROOT = BASE_DIR / "static"
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
AUTH_USER_MODEL = "articles.User"
2020-08-16 19:24:31 +02:00
BLOG = {
"description": "My take on tech-related subjects (but not only)",
"base_url": "https://gabnotes.org/",
}