from .base import * # noqa: F401,F403 # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = "django-insecure-)3^d_7xfyv3#+oz#8rj9tym2=g*n!+-sp#_v!t&h+i0y+gv(8u" BASE_URL = "http://localhost:8000/" FRONT_END_URL = "http://localhost:3000" SESSION_COOKIE_SAMESITE = None CORS_ALLOWED_ORIGINS = ["http://localhost:3000", "http://127.0.0.1:3000"] CORS_ALLOW_CREDENTIALS = True CORS_ORIGIN_WHITELIST = ("http://localhost:3000",) CSRF_TRUSTED_ORIGINS = ["http://localhost:3000"] EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend" DEFAULT_FROM_EMAIL = "cineclub-contact@ens.fr" # Database # https://docs.djangoproject.com/en/3.2/ref/settings/#databases DATABASES = { "default": { "ENGINE": "django.db.backends.sqlite3", "NAME": BASE_DIR / "db.sqlite3", } }