bookwyrm/bookwyrm/settings.py

153 lines
4 KiB
Python
Raw Normal View History

''' bookwyrm settings and configuration '''
2020-01-25 06:32:41 +00:00
import os
from environs import Env
env = Env()
2020-09-23 22:44:47 +00:00
DOMAIN = env('DOMAIN')
2020-11-11 18:35:34 +00:00
PAGE_LENGTH = env('PAGE_LENGTH', 15)
# celery
CELERY_BROKER = env('CELERY_BROKER')
CELERY_RESULT_BACKEND = env('CELERY_RESULT_BACKEND')
CELERY_ACCEPT_CONTENT = ['application/json']
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
2020-12-02 23:19:29 +00:00
# email
EMAIL_HOST = env('EMAIL_HOST')
EMAIL_PORT = env('EMAIL_PORT', 587)
EMAIL_HOST_USER = env('EMAIL_HOST_USER')
EMAIL_HOST_PASSWORD = env('EMAIL_HOST_PASSWORD')
EMAIL_USE_TLS = env('EMAIL_USE_TLS', True)
2020-01-25 06:32:41 +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.0/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = env('SECRET_KEY')
2020-01-25 06:32:41 +00:00
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = env.bool('DEBUG', True)
2020-01-25 06:32:41 +00:00
ALLOWED_HOSTS = env.list('ALLOWED_HOSTS', ['*'])
OL_URL = env('OL_URL')
2020-01-25 06:32:41 +00:00
# Application definition
INSTALLED_APPS = [
2020-09-21 17:33:23 +00:00
'django.contrib.admin',
2020-01-25 06:32:41 +00:00
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
2020-01-29 23:10:32 +00:00
'django.contrib.humanize',
'django_rename_app',
'bookwyrm',
2020-03-22 21:33:26 +00:00
'celery',
2020-01-25 06:32:41 +00: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 = 'bookwyrm.urls'
2020-01-25 06:32:41 +00:00
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
2020-01-25 23:25:19 +00:00
'DIRS': ['templates'],
2020-01-25 06:32:41 +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',
'bookwyrm.context_processors.site_settings',
2020-01-25 06:32:41 +00:00
],
},
},
]
2020-01-25 23:25:19 +00:00
WSGI_APPLICATION = 'bookwyrm.wsgi.application'
2020-01-25 06:32:41 +00:00
# Database
# https://docs.djangoproject.com/en/2.0/ref/settings/#databases
2020-09-21 15:22:58 +00:00
BOOKWYRM_DATABASE_BACKEND = env('BOOKWYRM_DATABASE_BACKEND', 'postgres')
2020-09-21 15:22:58 +00:00
BOOKWYRM_DBS = {
'postgres': {
2020-01-25 06:32:41 +00:00
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': env('POSTGRES_DB', 'fedireads'),
'USER': env('POSTGRES_USER', 'fedireads'),
'PASSWORD': env('POSTGRES_PASSWORD', 'fedireads'),
2020-03-29 00:23:43 +00:00
'HOST': env('POSTGRES_HOST', ''),
2020-01-25 06:32:41 +00:00
'PORT': 5432
},
2020-01-25 06:32:41 +00:00
}
DATABASES = {
2020-09-21 15:22:58 +00:00
'default': BOOKWYRM_DBS[BOOKWYRM_DATABASE_BACKEND]
}
2020-01-26 20:14:27 +00:00
LOGIN_URL = '/login/'
AUTH_USER_MODEL = 'bookwyrm.User'
2020-01-25 06:32:41 +00:00
# Password validation
# https://docs.djangoproject.com/en/2.0/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.0/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.0/howto/static-files/
PROJECT_DIR = os.path.dirname(os.path.abspath(__file__))
2020-01-25 06:32:41 +00:00
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, env('STATIC_ROOT', 'static'))
2020-01-28 06:49:56 +00:00
MEDIA_URL = '/images/'
MEDIA_ROOT = os.path.join(BASE_DIR, env('MEDIA_ROOT', 'images'))