workout/workout/settings.py

136 lines
3.9 KiB
Python
Raw Normal View History

2018-03-02 11:37:08 +01:00
"""
2018-03-04 10:15:26 +01:00
Django settings for workout project.
2018-03-02 11:37:08 +01:00
Generated by 'django-admin startproject' using Django 2.0.1.
For more information on this file, see
https://docs.djangoproject.com/en/2.0/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.0/ref/settings/
"""
import os
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
2018-03-04 10:27:32 +01:00
import dj_database_url
2018-03-02 11:37:08 +01:00
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!
2019-06-23 15:39:13 +02:00
SECRET_KEY = os.getenv(
"SECRET_KEY", "x*8q7sd14&a%cu95$h@jl&&#bb&j(j*-6h5!3atz*v%!zo3hd4"
)
2018-03-02 11:37:08 +01:00
# SECURITY WARNING: don't run with debug turned on in production!
2019-06-23 15:39:13 +02:00
DEBUG = os.getenv("DJANGO_ENV", "prod") == "dev"
2018-03-02 11:37:08 +01:00
2019-06-23 15:39:13 +02:00
ALLOWED_HOSTS = ["workout.augendre.info", "web", "workout", "127.0.0.1"]
2018-04-02 14:34:00 +02:00
if DEBUG:
2019-06-23 15:39:13 +02:00
ALLOWED_HOSTS.extend(["localhost", os.getenv("CURRENT_IP", "192.168.1.27")])
host = os.getenv("HOST", None)
2018-04-13 23:37:02 +02:00
if host:
ALLOWED_HOSTS.append(host)
2018-03-02 11:37:08 +01:00
2019-06-23 15:39:13 +02:00
ADMINS = [("Gabriel", os.getenv("ADMIN_EMAIL"))]
SERVER_EMAIL = os.getenv("SERVER_EMAIL")
EMAIL_SUBJECT_PREFIX = "[Workout] "
2018-03-31 17:19:56 +02:00
2018-03-02 11:37:08 +01:00
# Application definition
INSTALLED_APPS = [
2019-06-23 15:39:13 +02:00
"whitenoise.runserver_nostatic",
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
"django.contrib.humanize",
"gym",
"bootstrap4",
2018-03-02 11:37:08 +01:00
]
MIDDLEWARE = [
2019-06-23 15:39:13 +02:00
"django.middleware.security.SecurityMiddleware",
"whitenoise.middleware.WhiteNoiseMiddleware",
"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",
"django.middleware.http.ConditionalGetMiddleware",
2018-03-02 11:37:08 +01:00
]
2019-06-23 15:39:13 +02:00
STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage"
2018-04-14 00:25:39 +02:00
2019-06-23 15:39:13 +02:00
ROOT_URLCONF = "workout.urls"
2018-03-02 11:37:08 +01:00
TEMPLATES = [
{
2019-06-23 15:39:13 +02:00
"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",
]
2018-03-02 11:37:08 +01:00
},
2019-06-23 15:39:13 +02:00
}
2018-03-02 11:37:08 +01:00
]
2019-06-23 15:39:13 +02:00
WSGI_APPLICATION = "workout.wsgi.application"
2018-03-02 11:37:08 +01:00
# Database
# https://docs.djangoproject.com/en/2.0/ref/settings/#databases
DATABASES = {
2019-06-23 15:39:13 +02:00
"default": dj_database_url.config(
default="sqlite:///" + os.path.join(BASE_DIR, "db.sqlite3"), conn_max_age=600
)
2018-03-02 11:37:08 +01:00
}
# Password validation
# https://docs.djangoproject.com/en/2.0/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
2019-06-23 15:39:13 +02:00
"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator"
2018-03-02 11:37:08 +01:00
},
2019-06-23 15:39:13 +02:00
{"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator"},
{"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator"},
{"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator"},
2018-03-02 11:37:08 +01:00
]
# Internationalization
# https://docs.djangoproject.com/en/2.0/topics/i18n/
2019-06-23 15:39:13 +02:00
LANGUAGE_CODE = "fr-fr"
2018-03-02 11:37:08 +01:00
2019-06-23 15:39:13 +02:00
TIME_ZONE = "Europe/Paris"
2018-03-02 11:37:08 +01:00
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.0/howto/static-files/
2019-06-23 15:39:13 +02:00
STATIC_URL = "/static/"
STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
2018-03-31 17:19:56 +02:00
2019-06-23 15:39:13 +02:00
LOGIN_REDIRECT_URL = "rooms-list"
2018-03-31 17:19:56 +02:00
2019-06-23 15:39:13 +02:00
EMAIL_BACKEND = "django_mailgun.MailgunBackend"
MAILGUN_ACCESS_KEY = os.getenv("MAILGUN_ACCESS_KEY", "")
MAILGUN_SERVER_NAME = os.getenv("MAILGUN_SERVER_NAME", "")