42 lines
995 B
Python
42 lines
995 B
Python
|
"""
|
||
|
Django prod settings for cas_eleves project.
|
||
|
|
||
|
Generated by 'django-admin startproject' using Django 2.1.15.
|
||
|
|
||
|
For more information on this file, see
|
||
|
https://docs.djangoproject.com/en/2.1/topics/settings/
|
||
|
|
||
|
For the full list of settings and their values, see
|
||
|
https://docs.djangoproject.com/en/2.1/ref/settings/
|
||
|
"""
|
||
|
|
||
|
import os
|
||
|
from .settings_base import *
|
||
|
|
||
|
# SECURITY WARNING: keep the secret key used in production secret!
|
||
|
SECRET_KEY = "CHANGE_ME" # FIXME
|
||
|
|
||
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||
|
DEBUG = False
|
||
|
|
||
|
ALLOWED_HOSTS = [] # FIXME
|
||
|
|
||
|
# Database
|
||
|
# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
|
||
|
|
||
|
DATABASES = { # FIXME change to something else
|
||
|
"default": {
|
||
|
"ENGINE": "django.db.backends.sqlite3",
|
||
|
"NAME": os.path.join(BASE_DIR, "db.sqlite3"),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
# Internationalization
|
||
|
# https://docs.djangoproject.com/en/2.1/topics/i18n/
|
||
|
|
||
|
LANGUAGE_CODE = "fr-fr"
|
||
|
TIME_ZONE = "Europe/Paris"
|
||
|
USE_I18N = True
|
||
|
USE_L10N = True
|
||
|
USE_TZ = True
|