From d5b5ba8c842b8c3192618c77bb99435ce932030e Mon Sep 17 00:00:00 2001 From: itskovacs Date: Tue, 5 Aug 2025 18:49:36 +0200 Subject: [PATCH] :sparkles: Configurable default settings (map center, currency, tile) --- backend/trip/config.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backend/trip/config.py b/backend/trip/config.py index 204b238..e684b35 100644 --- a/backend/trip/config.py +++ b/backend/trip/config.py @@ -23,6 +23,11 @@ class Settings(BaseSettings): OIDC_CLIENT_SECRET: str = "" OIDC_REDIRECT_URI: str = "" + DEFAULT_TILE: str = "https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}{r}.png" + DEFAULT_CURRENCY: str = "€" + DEFAULT_MAP_LAT: float = 48.107 + DEFAULT_MAP_LNG: float = -2.988 + class Config: env_file = "storage/config.yml"