mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 15:33:22 +00:00
feat: Gestion des inscriptions [#1] feat(frontend): Création des vues pour le paramétrage de l'école [#2] feat: Gestion du login [#6] fix: Correction lors de la migration des modèle [#8] feat: Révision du menu principal [#9] feat: Ajout d'un footer [#10] feat: Création des dockers compose pour les environnements de développement et de production [#12] doc(ci): Mise en place de Husky et d'un suivi de version automatique [#14]
248 lines
7.0 KiB
Python
248 lines
7.0 KiB
Python
"""
|
|
Django settings for N3wtSchool project.
|
|
|
|
Generated by 'django-admin startproject' using Django 5.0.4.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/5.0/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/5.0/ref/settings/
|
|
"""
|
|
|
|
from pathlib import Path
|
|
import json
|
|
import os
|
|
|
|
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
|
|
|
LOGIN_REDIRECT_URL = '/GestionInscriptions/fichesInscriptions'
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = 'django-insecure-afjm6kvigncxzx6jjjf(qb0n(*qvi#je79r=gqflcn007d_ve9'
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = True
|
|
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
# Application definition
|
|
|
|
INSTALLED_APPS = [
|
|
'GestionInscriptions.apps.GestioninscriptionsConfig',
|
|
'GestionLogin.apps.GestionloginConfig',
|
|
'GestionMessagerie.apps.GestionMessagerieConfig',
|
|
'GestionNotification.apps.GestionNotificationConfig',
|
|
'GestionEnseignants.apps.GestionenseignantsConfig',
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'rest_framework',
|
|
'corsheaders',
|
|
'django_celery_beat',
|
|
'N3wtSchool',
|
|
'drf_yasg',
|
|
]
|
|
|
|
MIDDLEWARE = [
|
|
'django.middleware.security.SecurityMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.middleware.common.CommonMiddleware', # Déplacez ici, avant CorsMiddleware
|
|
'corsheaders.middleware.CorsMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
]
|
|
|
|
|
|
ROOT_URLCONF = 'N3wtSchool.urls'
|
|
|
|
TEMPLATES = [
|
|
{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [BASE_DIR / "templates", BASE_DIR / "static/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',
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
CACHES = {
|
|
'default': {
|
|
'BACKEND': 'django.core.cache.backends.redis.RedisCache',
|
|
'LOCATION': 'redis://redis:6379',
|
|
}
|
|
}
|
|
SESSION_ENGINE = 'django.contrib.sessions.backends.cache'
|
|
SESSION_CACHE_ALIAS = 'default'
|
|
|
|
WSGI_APPLICATION = 'N3wtSchool.wsgi.application'
|
|
|
|
# Password validation
|
|
# https://docs.djangoproject.com/en/5.0/ref/settings/#auth-password-validators
|
|
|
|
AUTH_PASSWORD_VALIDATORS = [
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
|
|
'OPTIONS': {
|
|
'min_length': 6,
|
|
}
|
|
},
|
|
#{
|
|
# 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
|
|
#},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
|
|
},
|
|
]
|
|
|
|
|
|
# Internationalization
|
|
# https://docs.djangoproject.com/en/5.0/topics/i18n/
|
|
|
|
LANGUAGE_CODE = 'en-us'
|
|
|
|
TIME_ZONE = 'UTC'
|
|
|
|
USE_I18N = True
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# https://docs.djangoproject.com/en/5.0/howto/static-files/
|
|
|
|
DEBUG = True
|
|
|
|
STATIC_URL = 'static/'
|
|
|
|
STATICFILES_DIRS = [
|
|
BASE_DIR / 'static',
|
|
]
|
|
|
|
STATIC_ROOT = BASE_DIR / 'staticfiles'
|
|
|
|
|
|
# Default primary key field type
|
|
# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field
|
|
|
|
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|
|
|
|
########################################################################
|
|
#################### Application Settings ##############################
|
|
########################################################################
|
|
|
|
with open('GestionInscriptions/Configuration/application.json', 'r') as f:
|
|
jsonObject = json.load(f)
|
|
|
|
DJANGO_SUPERUSER_PASSWORD='admin'
|
|
DJANGO_SUPERUSER_USERNAME='admin'
|
|
DJANGO_SUPERUSER_EMAIL='admin@n3wtschool.com'
|
|
|
|
EMAIL_HOST='smtp.gmail.com'
|
|
EMAIL_PORT=587
|
|
EMAIL_HOST_USER=jsonObject['mailFrom']
|
|
EMAIL_HOST_PASSWORD=jsonObject['password']
|
|
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
|
EMAIL_USE_TLS = True
|
|
EMAIL_USE_SSL = False
|
|
EMAIL_INSCRIPTION_SUBJECT = '[N3WT-SCHOOL] Dossier Inscription'
|
|
EMAIL_INSCRIPTION_CORPUS = """Bonjour,
|
|
|
|
Afin de procéder à l'inscription de votre petit bout, vous trouverez ci-joint le lien vers la page d'authentification : http://localhost:3000/users/login
|
|
|
|
S'il s'agit de votre première connexion, veuillez procéder à l'activation de votre compte : http://localhost:3000/users/subscribe
|
|
identifiant = %s
|
|
|
|
Cordialement,
|
|
"""
|
|
|
|
EMAIL_RELANCE_SUBJECT = '[N3WT-SCHOOL] Relance - Dossier Inscription'
|
|
EMAIL_RELANCE_CORPUS = 'Bonjour,\nN\'ayant pas eu de retour de votre part, nous vous renvoyons le lien vers le formulaire d\'inscription : http://localhost:3000/users/login\nCordialement'
|
|
EMAIL_REINIT_SUBJECT = 'Réinitialisation du mot de passe'
|
|
EMAIL_REINIT_CORPUS = 'Bonjour,\nVous trouverez ci-joint le lien pour réinitialiser votre mot de passe : http://localhost:3000/users/password/reset?uuid=%s\nCordialement'
|
|
|
|
DOCUMENT_DIR = 'documents'
|
|
|
|
CORS_ORIGIN_ALLOW_ALL = True
|
|
CORS_ALLOW_ALL_HEADERS = True
|
|
CORS_ALLOW_CREDENTIALS = True
|
|
|
|
CORS_ALLOWED_ORIGINS = [
|
|
"http://localhost:3000"
|
|
]
|
|
|
|
CSRF_TRUSTED_ORIGINS = [
|
|
"http://localhost:3000", # Front Next.js
|
|
"http://localhost:8080" # Insomnia
|
|
]
|
|
|
|
CSRF_COOKIE_HTTPONLY = False
|
|
CSRF_COOKIE_SECURE = False
|
|
CSRF_COOKIE_NAME = 'csrftoken'
|
|
|
|
|
|
USE_TZ = True
|
|
TZ_APPLI = 'Europe/Paris'
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql',
|
|
"NAME": "school",
|
|
"USER": "postgres",
|
|
"PASSWORD": "postgres",
|
|
"HOST": "database",
|
|
"PORT": "5432",
|
|
}
|
|
}
|
|
|
|
AUTH_USER_MODEL = 'GestionLogin.Profil'
|
|
AUTHENTICATION_BACKENDS = ('GestionLogin.backends.EmailBackend', )
|
|
SILENCED_SYSTEM_CHECKS = ["auth.W004"]
|
|
|
|
EXPIRATION_URL_NB_DAYS = 7
|
|
EXPIRATION_DI_NB_DAYS = 20
|
|
DATE_FORMAT = '%d-%m-%Y %H:%M'
|
|
|
|
EXPIRATION_SESSION_NB_SEC = 10
|
|
|
|
NB_RESULT_PER_PAGE = 8
|
|
NB_MAX_PAGE = 100
|
|
|
|
REST_FRAMEWORK = {
|
|
'DEFAULT_PAGINATION_CLASS': 'GestionInscriptions.pagination.CustomPagination',
|
|
'PAGE_SIZE': NB_RESULT_PER_PAGE
|
|
}
|
|
|
|
CELERY_BROKER_URL = 'redis://redis:6379/0'
|
|
CELERY_RESULT_BACKEND = 'redis://redis:6379/0'
|
|
CELERY_ACCEPT_CONTENT = ['json']
|
|
CELERY_TASK_SERIALIZER = 'json'
|
|
CELERY_RESULT_SERIALIZER = 'json'
|
|
CELERY_TIMEZONE = 'Europe/Paris'
|
|
CELERY_BROKER_CONNECTION_RETRY_ON_STARTUP = True
|
|
|
|
URL_DJANGO = 'http://localhost:8080/'
|
|
|
|
REDIS_HOST = 'redis'
|
|
REDIS_PORT = 6379
|
|
REDIS_DB = 0
|
|
REDIS_PASSWORD = None
|
|
|
|
SECRET_KEY = 'QWQ8bYlCz1NpQ9G0vR5kxMnvWszfH2y3'
|