feat: add centralized configuration system with Pydantic

- Add backend/config.py with Pydantic settings validation
- Support for standalone, provider, and hybrid operation modes
- Multi-database backend configuration (SQLite/PostgreSQL/MariaDB)
- Environment variable validation with helpful error messages
- Worker and Whisper model configuration
This commit is contained in:
2026-01-11 21:23:45 +01:00
parent ad0bdba03d
commit 7959210724
10 changed files with 1318 additions and 0 deletions

1
backend/api/__init__.py Normal file
View File

@@ -0,0 +1 @@
"""TranscriptorIO API Module."""