From 18e4477bf120b3ff3d6a4dd953ae1a7d2a25acb0 Mon Sep 17 00:00:00 2001 From: AlexeerCT Date: Tue, 24 Mar 2026 15:35:13 -0500 Subject: [PATCH] Add TEST_DATABASE_URL to configuration settings - Introduced a new configuration variable, TEST_DATABASE_URL, to specify the test database connection string. - This addition enhances the flexibility of database handling, particularly for testing scenarios, aligning with recent improvements in database URL management. --- backend/core/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/core/config.py b/backend/core/config.py index 495600f8..eaabdb82 100644 --- a/backend/core/config.py +++ b/backend/core/config.py @@ -27,6 +27,8 @@ class Settings(BaseSettings): CORE_DB_USER: str = "postgres" CORE_DB_PASSWORD: str = "postgres" + TEST_DATABASE_URL: str = "postgresql://postgres:postgres@localhost:5432/anexo76_core" + # Keycloak KEYCLOAK_SERVER_URL: str = "http://localhost:8080/kcauth" KEYCLOAK_REALM: str = "master"