feat(sso): add Keycloak settings to database.py and Helm ConfigMap

This commit is contained in:
2026-03-01 00:45:07 +01:00
parent 58f0fd50d8
commit 924e51ffaa
3 changed files with 15 additions and 0 deletions

View File

@@ -8,6 +8,11 @@ class Settings(BaseSettings):
jwt_secret_key: str
jwt_algorithm: str = "HS256"
jwt_expire_minutes: int = 60
keycloak_url: str
keycloak_realm: str
keycloak_client_id: str
keycloak_client_secret: str
keycloak_redirect_uri: str
class Config:
env_file = ".env"