- Created config directory with settings.py, __init__.py, and settings.yaml - Implemented SqlServerConfig and DatabaseConfig classes for SQL Server connections - Added Settings class with database_url property for SQLAlchemy URL construction - Uses parse_yaml_raw_as for UTF-8 safe YAML loading on Windows - Configuration validated successfully via import test Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
4 lines
115 B
Python
4 lines
115 B
Python
from config.settings import settings, Settings, load_settings
|
|
|
|
__all__ = ["settings", "Settings", "load_settings"]
|