forked from sr2/cloud-api
fix: default db credential colon
This commit is contained in:
parent
52ecd64f70
commit
8777ad2814
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ class Config(CustomBaseSettings):
|
||||||
DATABASE_NAME: str = "fastapi-exp"
|
DATABASE_NAME: str = "fastapi-exp"
|
||||||
DATABASE_PORT: str = "5432"
|
DATABASE_PORT: str = "5432"
|
||||||
DATABASE_HOSTNAME: str = "localhost"
|
DATABASE_HOSTNAME: str = "localhost"
|
||||||
DATABASE_CREDENTIALS: SecretStr = ""
|
DATABASE_CREDENTIALS: SecretStr = ":"
|
||||||
|
|
||||||
settings = Config()
|
settings = Config()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue