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:
parent
c969fb460d
commit
3c0addcbac
|
@ -17,7 +17,7 @@ class PostgresSettings(pydantic_settings.BaseSettings):
|
||||||
port: int = 5432
|
port: int = 5432
|
||||||
user: str = "app"
|
user: str = "app"
|
||||||
password: pydantic.SecretStr = pydantic.Field(
|
password: pydantic.SecretStr = pydantic.Field(
|
||||||
default=...,
|
default="your_password",
|
||||||
validation_alias=pydantic.AliasChoices("password", "postgres_password"),
|
validation_alias=pydantic.AliasChoices("password", "postgres_password"),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user