122 lines
3 KiB
Python
122 lines
3 KiB
Python
import os
|
|
|
|
try:
|
|
from . import secret
|
|
except ImportError:
|
|
raise ImportError(
|
|
"The secret.py file is missing.\n"
|
|
"For a development environment, simply copy secret_example.py"
|
|
)
|
|
|
|
|
|
def import_secret(name):
|
|
"""
|
|
Shorthand for importing a value from the secret module and raising an
|
|
informative exception if a secret is missing.
|
|
"""
|
|
try:
|
|
return getattr(secret, name)
|
|
except AttributeError:
|
|
raise RuntimeError("Secret missing: {}".format(name))
|
|
|
|
SECRET_KEY = import_secret("SECRET_KEY")
|
|
ADMINS = import_secret("ADMINS")
|
|
SERVER_EMAIL = import_secret("SERVER_EMAIL")
|
|
|
|
DBNAME = import_secret("DBNAME")
|
|
DBUSER = import_secret("DBUSER")
|
|
DBPASSWD = import_secret("DBPASSWD")
|
|
|
|
ACCOUNT_CREATION_PASS = import_secret("ACCOUNT_CREATION_PASS")
|
|
|
|
|
|
BASE_DIR = os.path.join(
|
|
os.path.dirname(__file__), "..", ".."
|
|
)
|
|
|
|
INSTALLED_APPS = [
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'gestion',
|
|
'partitions',
|
|
'calendrier',
|
|
'propositions',
|
|
'pads',
|
|
]
|
|
|
|
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 = "Ernestophone.urls"
|
|
|
|
TEMPLATES = [{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [
|
|
os.path.join(BASE_DIR, 'templates/'),
|
|
],
|
|
'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 = "Ernestophone.wsgi.application"
|
|
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.postgresql",
|
|
"NAME": DBNAME,
|
|
"USER": DBUSER,
|
|
"PASSWORD": DBPASSWD,
|
|
"HOST": "localhost",
|
|
}
|
|
}
|
|
|
|
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',
|
|
},
|
|
]
|
|
|
|
|
|
# I18n
|
|
LANGUAGE_CODE = 'fr-fr'
|
|
TIME_ZONE = 'UTC'
|
|
USE_I18N = True
|
|
USE_L10N = True
|
|
USE_TZ = True
|
|
|
|
|
|
STATICFILES_DIRS = (
|
|
os.path.join(BASE_DIR, 'static'),
|
|
os.path.join(BASE_DIR, 'media/partitions'),
|
|
)
|
|
|
|
AUTH_PROFILE_MODEL = 'gestion.ErnestoUser'
|
|
|
|
LOGIN_URL = "/login"
|