You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
3.4 KiB
115 lines
3.4 KiB
import os |
|
from pathlib import Path |
|
|
|
# Charger les variables d'environnement depuis un fichier .env si présent |
|
from dotenv import load_dotenv |
|
|
|
load_dotenv() |
|
|
|
# Build paths inside the project like this: BASE_DIR / 'subdir'. |
|
BASE_DIR = Path(__file__).resolve().parent.parent |
|
|
|
SECRET_KEY = os.environ.get('DJANGO_SECRET_KEY', '') |
|
OPENAI_API_KEY = os.environ.get('OPENAI_API_KEY', '') |
|
DEBUG = os.environ.get('DJANGO_DEBUG', '') == '1' |
|
ALLOWED_HOSTS = os.environ.get('DJANGO_ALLOWED_HOSTS', '').split(',') if not DEBUG else [] |
|
CSRF_TRUSTED_ORIGINS = os.environ.get('DJANGO_CSRF_TRUSTED_ORIGINS', '').split(',') if not DEBUG else [] |
|
|
|
# Application definition |
|
|
|
INSTALLED_APPS = [ |
|
'django.contrib.admin', |
|
'django.contrib.auth', |
|
'django.contrib.contenttypes', |
|
'django.contrib.sessions', |
|
'django.contrib.messages', |
|
'django.contrib.staticfiles', |
|
'main', # Your main application |
|
] |
|
|
|
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 = 'ia_prof.urls' |
|
|
|
TEMPLATES = [ |
|
{ |
|
'BACKEND': 'django.template.backends.django.DjangoTemplates', |
|
'DIRS': [os.path.join(BASE_DIR, 'main/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 = 'ia_prof.wsgi.application' |
|
|
|
# Database |
|
# https://docs.djangoproject.com/en/4.x/ref/settings/#databases |
|
|
|
DATABASES = { |
|
'default': { |
|
'ENGINE': 'django.db.backends.sqlite3', |
|
'NAME': BASE_DIR / 'db.sqlite3', |
|
} |
|
} |
|
|
|
# Password validation |
|
# https://docs.djangoproject.com/en/4.x/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/4.x/topics/i18n/ |
|
|
|
LANGUAGE_CODE = 'fr' |
|
|
|
TIME_ZONE = 'Europe/Paris' |
|
|
|
USE_I18N = True |
|
|
|
USE_L10N = True |
|
|
|
USE_TZ = True |
|
|
|
# Static files (CSS, JavaScript, Images) |
|
# https://docs.djangoproject.com/en/4.x/howto/static-files/ |
|
|
|
STATIC_URL = '/static/' |
|
STATIC_ROOT = os.path.join(BASE_DIR, 'static') |
|
STATICFILES_DIRS = [os.path.join(BASE_DIR, 'main', 'templates', 'static')] if os.path.exists(os.path.join(BASE_DIR, 'main', 'templates', 'static')) else [] |
|
|
|
# Default primary key field type |
|
# https://docs.djangoproject.com/en/4.x/ref/settings/#default-auto-field |
|
|
|
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' |
|
|
|
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') |
|
CSRF_COOKIE_SECURE = True |
|
SESSION_COOKIE_SECURE = True |