This commit is contained in:
Joyce
2026-02-06 08:36:40 -05:00
parent b1b92b445b
commit 8ea2987e3e
6 changed files with 271 additions and 220 deletions

View File

@@ -5,6 +5,7 @@ class Settings(BaseSettings):
database_url: str = "postgresql+asyncpg://postgres:postgres@db:5432/availability"
sync_database_url: str = "postgresql://postgres:postgres@db:5432/availability"
ics_refresh_interval_minutes: int = 15
slot_interval_minutes: int = 15 # Time slot granularity (15, 30, or 60)
# SMTP Settings
smtp_host: str | None = None