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!
|
2018-03-31 17:19:56 +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!
|
2018-03-05 22:16:45 +01:00
|
|
|
DEBUG = os.getenv('DJANGO_ENV', 'prod') == 'dev'
|
2018-03-02 11:37:08 +01:00
|
|
|
|
2018-04-02 14:34:00 +02:00
|
|
|
ALLOWED_HOSTS = ['workout.augendre.info', 'web', 'workout', 'workout-web']
|
|
|
|
if DEBUG:
|
|
|
|
ALLOWED_HOSTS.extend([
|
|
|
|
'localhost',
|
2018-04-03 18:10:07 +02:00
|
|
|
os.getenv('CURRENT_IP', '192.168.1.27')
|
2018-04-02 14:34:00 +02:00
|
|
|
])
|
2018-03-02 11:37:08 +01:00
|
|
|
|
2018-03-31 17:19:56 +02:00
|
|
|
ADMINS = [('Gabriel', os.getenv('ADMIN_EMAIL')), ]
|
|
|
|
SERVER_EMAIL = os.getenv('SERVER_EMAIL')
|
2018-04-01 12:17:54 +02:00
|
|
|
EMAIL_SUBJECT_PREFIX = '[Workout] '
|
2018-03-31 17:19:56 +02:00
|
|
|
|
2018-03-02 11:37:08 +01:00
|
|
|
# Application definition
|
|
|
|
|
|
|
|
INSTALLED_APPS = [
|
|
|
|
'django.contrib.admin',
|
|
|
|
'django.contrib.auth',
|
|
|
|
'django.contrib.contenttypes',
|
|
|
|
'django.contrib.sessions',
|
|
|
|
'django.contrib.messages',
|
|
|
|
'django.contrib.staticfiles',
|
2018-03-04 09:23:35 +01:00
|
|
|
'django.contrib.humanize',
|
2018-03-02 12:01:51 +01:00
|
|
|
'gym',
|
2018-03-03 18:16:27 +01:00
|
|
|
'bootstrap4',
|
2018-03-02 11:37:08 +01: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',
|
2018-03-31 17:19:56 +02:00
|
|
|
'django.middleware.http.ConditionalGetMiddleware',
|
2018-03-02 11:37:08 +01:00
|
|
|
]
|
|
|
|
|
2018-03-04 10:15:26 +01:00
|
|
|
ROOT_URLCONF = 'workout.urls'
|
2018-03-02 11:37:08 +01:00
|
|
|
|
|
|
|
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',
|
2018-03-31 17:44:35 +02:00
|
|
|
'gym.context_processors.git_version',
|
2018-03-02 11:37:08 +01:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2018-03-04 10:15:26 +01: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 = {
|
2018-03-04 10:27:32 +01: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 = [
|
|
|
|
{
|
|
|
|
'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/
|
|
|
|
|
2018-03-03 14:24:57 +01:00
|
|
|
LANGUAGE_CODE = 'fr-fr'
|
2018-03-02 11:37:08 +01:00
|
|
|
|
2018-03-03 14:24:57 +01: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/
|
|
|
|
|
|
|
|
STATIC_URL = '/static/'
|
2018-03-04 09:23:35 +01:00
|
|
|
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
|
2018-03-05 22:03:51 +01:00
|
|
|
|
|
|
|
LOGIN_REDIRECT_URL = 'rooms-list'
|
2018-03-31 17:19:56 +02:00
|
|
|
|
|
|
|
EMAIL_BACKEND = 'django_mailgun.MailgunBackend'
|
|
|
|
MAILGUN_ACCESS_KEY = os.getenv('MAILGUN_ACCESS_KEY', '')
|
|
|
|
MAILGUN_SERVER_NAME = os.getenv('MAILGUN_SERVER_NAME', '')
|
|
|
|
|
2018-03-31 17:44:35 +02:00
|
|
|
REPO_URL = 'https://github.com/Crocmagnon/workout'
|