from pydantic_settings import BaseSettings class Settings(BaseSettings): PROJECT_NAME: str = "home-automation-backend" settings = Settings()