""" Django settings for gestion_parc project. Generated by 'django-admin startproject' using Django 6.0.7. For more information on this file, see https://docs.djangoproject.com/en/6.0/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/6.0/ref/settings/ """ from pathlib import Path ### Bloc pour utiliser un fichier .env def _required_env(key: str) -> str: from os import environ from dotenv import load_dotenv load_dotenv() value = environ.get(key) if not value: raise RuntimeError( f"Variable {key!r} manquante" f"Vérifiez votre fichier .env" ) return value ### Fin du bloc .env # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = _required_env("DJANGO_SECRET_KEY") # SECURITY WARNING: don't run with debug turned on in production! # DEBUG = _required_env("DJANGO_DEBUG") DEBUG = False ALLOWED_HOSTS = ["127.0.0.1", "localhost"] CORS_ALLOWED_ORIGINS = ["http://127.0.0.1:8000", "http://localhost:8000"] SECURE_HSTS_PRELOAD = True SECURE_HSTS_SECONDS = 31536000 SECURE_HSTS_INCLUDE_SUBDOMAINS = True SECURE_CONTENT_TYPE_NOSNIFF = True SECURE_REFERRER_POLICY = "same-origin" ### C'est en FALSE exprès. Oui, pas en environnement local. Le HTTPS en local c'est trop galère. ### Ils passent à "True" et le `check --deploy` est propre, mais ça devient impraticable en local SECURE_SSL_REDIRECT = False SESSION_COOKIE_SECURE = False CSRF_COOKIE_SECURE = False # Application definition INSTALLED_APPS = [ "django.contrib.admin", "django.contrib.auth", "django.contrib.contenttypes", "django.contrib.sessions", "django.contrib.messages", "django.contrib.staticfiles", "rest_framework", "rest_framework.authtoken", "parc", "whitenoise.runserver_nostatic", # Sinon le CSS est cassé avec DEBUG = False ] REST_FRAMEWORK = { "DEFAULT_PAGINATION_CLASS": "rest_framework.pagination.PageNumberPagination", "PAGE_SIZE": 50, "DEFAULT_THROTTLE_CLASSES": [ "rest_framework.throttling.UserRateThrottle", "rest_framework.throttling.AnonRateThrottle", ], "DEFAULT_THROTTLE_RATES": {"user": "1000/day", "anon": "50/day"}, "DEFAULT_AUTHENTICATION_CLASSES": [ "rest_framework.authentication.SessionAuthentication", "rest_framework.authentication.BasicAuthentication", "rest_framework.authentication.TokenAuthentication", ], "DEFAULT_PERMISSION_CLASSES": [ "rest_framework.permissions.IsAuthenticatedOrReadOnly", "rest_framework.permissions.IsAuthenticated", ], } DATA_UPLOAD_MAX_MEMORY_SIZE = 2 * 1024 * 1024 # 2 Mo DATA_UPLOAD_MAX_NUMBER_FIELDS = 1000 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', "whitenoise.middleware.WhiteNoiseMiddleware", ] ROOT_URLCONF = 'gestion_parc.urls' TEMPLATES = [ { "BACKEND": "django.template.backends.django.DjangoTemplates", "DIRS": [BASE_DIR / "templates"], "APP_DIRS": True, "OPTIONS": { "context_processors": [ "django.template.context_processors.request", "django.contrib.auth.context_processors.auth", "django.contrib.messages.context_processors.messages", ], }, }, ] WSGI_APPLICATION = 'gestion_parc.wsgi.application' # Database # https://docs.djangoproject.com/en/6.0/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': BASE_DIR / 'db.sqlite3', } } # Password validation # https://docs.djangoproject.com/en/6.0/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/6.0/topics/i18n/ LANGUAGE_CODE = 'fr-fr' TIME_ZONE = 'UTC' USE_I18N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/6.0/howto/static-files/ STATIC_URL = "static/" STATIC_ROOT = BASE_DIR / "staticfiles" STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage" DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField" LOGIN_REDIRECT_URL = "/equipments/" LOGOUT_REDIRECT_URL = "/login/" import logging LOGGING = { "version": 1, "disable_existing_loggers": False, "formatters": { "verbose": { "format": "{asctime} {levelname} {name} {message}", "style": "{", }, "security": { "format": "{asctime} {levelname} SECURITY {name} {message}", "style": "{", }, }, "handlers": { "console": { "class": "logging.StreamHandler", "formatter": "verbose", }, "security_file": { "class": "logging.FileHandler", "filename": BASE_DIR / "logs" / "security.log", "formatter": "security", }, "auth_file": { "class": "logging.FileHandler", "filename": BASE_DIR / "logs" / "auth.log", "formatter": "security", }, }, "loggers": { "django.security": { "handlers": ["security_file", "console"], "level": "WARNING", "propagate": False, }, "parc.auth": { "handlers": ["auth_file", "console"], "level": "INFO", "propagate": False, }, }, "rest_framework.throttling": { "handlers": ["security_file", "console"], "level": "INFO", "propagate": False, }, }