Stage 03.4 - private auth skeleton

This commit is contained in:
2026-04-14 07:01:06 +03:00
parent 8e3f240558
commit 96998ee998
4 changed files with 60 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ def load_settings() -> Settings:
bot_parse_mode=os.getenv("BOT_PARSE_MODE", "HTML").strip() or "HTML",
app_env=os.getenv("APP_ENV", "dev").strip() or "dev",
log_level=os.getenv("LOG_LEVEL", "INFO").strip().upper() or "INFO",
tz=os.getenv("TZ", "Europe/Madrid").strip() or "Europe/Madrid",
tz=os.getenv("TZ", "Europe/Minsk").strip() or "Europe/Minsk",
exchange_enabled=_parse_bool(os.getenv("EXCHANGE_ENABLED", "false")),
exchange_name=os.getenv("EXCHANGE_NAME", "dzengi").strip() or "dzengi",
exchange_base_url=os.getenv("EXCHANGE_BASE_URL", "").strip(),