We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf28311 commit 403a907Copy full SHA for 403a907
1 file changed
backend/src/config/settings/base.py
@@ -32,7 +32,7 @@ class BackendBaseSettings(pydantic.BaseSettings):
32
DB_POSTGRES_PORT: int = decouple.config("POSTGRES_PORT", cast=int) # type: ignore
33
DB_POSTGRES_SCHEMA: str = decouple.config("POSTGRES_SCHEMA", cast=str) # type: ignore
34
DB_TIMEOUT: int = decouple.config("DB_TIMEOUT", cast=int) # type: ignore
35
- DB_POSTGRES_USENRAME: str = decouple.config("POSTGRES_USERNAME", cast=str) # type: ignore
+ DB_POSTGRES_USERNAME: str = decouple.config("POSTGRES_USERNAME", cast=str) # type: ignore
36
37
IS_DB_ECHO_LOG: bool = decouple.config("IS_DB_ECHO_LOG", cast=bool) # type: ignore
38
IS_DB_FORCE_ROLLBACK: bool = decouple.config("IS_DB_FORCE_ROLLBACK", cast=bool) # type: ignore
0 commit comments