from pydantic import BaseSettings class Settings(BaseSettings): dev_mode: bool = False dev_npm_port: int = 3000 frontend_path: str = "frontend" secret_key: str settings = Settings()