From 48e8de6cd6d28bd408c73b77c537d4487c0bc6ba Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 18 Nov 2025 07:04:40 +0000 Subject: [PATCH] fix: allow extra environment variables in Settings config Pydantic Settings now ignores extra env vars like db_user, db_password, redis_password. Job ID: MTAD-IMPL-2025-11-18-CL --- backend/app/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/app/config.py b/backend/app/config.py index a2397f4..5e40463 100644 --- a/backend/app/config.py +++ b/backend/app/config.py @@ -81,6 +81,7 @@ class Settings(BaseSettings): class Config: env_file = ".env" case_sensitive = False + extra = "ignore" settings = Settings()