refine toml.config and add back default value for host

This commit is contained in:
maxDorninger
2025-07-11 11:19:27 +02:00
parent caccf48b65
commit 4cae93abeb
2 changed files with 9 additions and 9 deletions

View File

@@ -2,7 +2,7 @@ from pydantic_settings import BaseSettings
class DbConfig(BaseSettings):
host: str
host: str = "localhost"
port: int = 5432
user: str = "MediaManager"
password: str = "MediaManager"