1
0
mirror of https://github.com/ijaric/voice_assistant.git synced 2025-05-24 14:33:26 +00:00

fix(temp): [#8] set default value for password

This commit is contained in:
ksieuk 2023-10-08 19:02:35 +03:00
parent c969fb460d
commit 3c0addcbac

View File

@ -17,7 +17,7 @@ class PostgresSettings(pydantic_settings.BaseSettings):
port: int = 5432
user: str = "app"
password: pydantic.SecretStr = pydantic.Field(
default=...,
default="your_password",
validation_alias=pydantic.AliasChoices("password", "postgres_password"),
)