1
0
Fork 0
forked from sr2/cloud-api

fix: default db credential colon

This commit is contained in:
Chris Milne 2026-06-08 14:52:10 +01:00
parent 52ecd64f70
commit 8777ad2814

View file

@ -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()