add exchange table
All checks were successful
Backend CI / unit-test (push) Successful in 35s

This commit is contained in:
2025-09-22 14:33:32 +02:00
parent 76cc967c42
commit 1fbc93353d
17 changed files with 446 additions and 92 deletions

View File

@@ -12,6 +12,7 @@ class Settings(BaseSettings):
port: int = 8000
workers: int = 1
log_level: str = "info"
database_url: str = "sqlite:///:memory:"
model_config = ConfigDict(env_file=".env", env_file_encoding="utf-8")