Files
2026-moving-helper/app/config.py
T

14 lines
311 B
Python
Raw Normal View History

2026-04-19 12:13:07 +02:00
import os
from dataclasses import dataclass
@dataclass(slots=True)
class Settings:
database_url: str = os.getenv("DATABASE_URL", "sqlite:///./data/app.db")
host: str = os.getenv("HOST", "0.0.0.0")
port: int = int(os.getenv("PORT", "10000"))
def get_settings() -> Settings:
return Settings()