from pydantic_settings import BaseSettings class Settings(BaseSettings): database_url: str = "postgresql+asyncpg://scope_user:scope_pass_2024@db:5432/scope_builder" database_url_sync: str = "postgresql://scope_user:scope_pass_2024@db:5432/scope_builder" anthropic_api_key: str = "" data_dir: str = "/app/data" class Config: env_file = ".env" settings = Settings()