from pydantic_settings import BaseSettings class Settings(BaseSettings): DATABASE_URL: str = "${DATABASE_URL}" settings = Settings()