several changes:
All checks were successful
Backend CI / unit-test (push) Successful in 34s

* api calls for auth

* exchange now bind to user
This commit is contained in:
2025-09-22 22:51:59 +02:00
parent 466e6ce653
commit 1750401278
14 changed files with 259 additions and 45 deletions

View File

@@ -16,6 +16,7 @@ class Settings(BaseSettings):
log_level: str = "info"
database_url: str = "sqlite:///:memory:"
api_base: str = "/api/v1"
session_expiry_seconds: int = 3600 * 24 * 7 # 7 days
hmac_key: str | None = None
model_config = ConfigDict(env_file=".env", env_file_encoding="utf-8")