django-ex/project/settings.py

134 lines
3.4 KiB
Python
Raw Normal View History

2015-04-29 17:56:45 +02:00
"""
Django settings for this project.
Generated by 'django-admin startproject' using Django 1.11.6.
2015-04-29 17:56:45 +02:00
For more information on this file, see
https://docs.djangoproject.com/en/1.11/topics/settings/
2015-04-29 17:56:45 +02:00
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.11/ref/settings/
2015-04-29 17:56:45 +02:00
"""
import os
2017-10-24 17:42:43 +02:00
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
2015-04-29 17:56:45 +02: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/1.11/howto/deployment/checklist/
2015-04-29 17:56:45 +02:00
# SECURITY WARNING: keep the secret key used in production secret!
# The SECRET_KEY is provided via an environment variable in OpenShift
SECRET_KEY = os.getenv(
'DJANGO_SECRET_KEY',
# safe value used for development when DJANGO_SECRET_KEY might not be set
'9e4@&tw46$l31)zrqe3wi+-slqm(ruvz&se0^%9#6(_w3ui!c0'
)
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
2016-11-02 20:27:35 +01:00
ALLOWED_HOSTS = ['*']
2015-04-29 17:56:45 +02:00
# Application definition
2017-10-24 17:42:43 +02:00
INSTALLED_APPS = [
2015-04-29 17:56:45 +02:00
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
2015-05-24 13:09:31 +02:00
'debug_toolbar',
2015-05-29 12:23:59 +02:00
'welcome',
2017-10-24 17:42:43 +02:00
]
2015-04-29 17:56:45 +02:00
2017-10-24 17:42:43 +02:00
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
2015-04-29 17:56:45 +02:00
'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',
2016-07-05 16:34:04 +02:00
'whitenoise.middleware.WhiteNoiseMiddleware',
2017-10-24 17:42:43 +02:00
'debug_toolbar.middleware.DebugToolbarMiddleware',
]
2015-04-29 17:56:45 +02:00
ROOT_URLCONF = 'project.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',
],
},
},
]
WSGI_APPLICATION = 'wsgi.application'
2015-04-29 17:56:45 +02:00
# Database
# https://docs.djangoproject.com/en/1.11/ref/settings/#databases
2015-04-29 17:56:45 +02:00
from . import database
DATABASES = {
'default': database.config()
}
2015-04-29 17:56:45 +02:00
2017-10-24 17:42:43 +02:00
# Password validation
# https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators
2017-10-24 17:42:43 +02:00
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',
},
]
2015-04-29 17:56:45 +02:00
# Internationalization
# https://docs.djangoproject.com/en/1.11/topics/i18n/
2015-04-29 17:56:45 +02:00
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/1.11/howto/static-files/
2015-04-29 17:56:45 +02:00
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
2016-07-08 17:00:57 +02:00
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
2017-10-24 17:38:42 +02:00
INTERNAL_IPS = ['127.0.0.1']