File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
backend/src/config/settings Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class BackendBaseSettings(pydantic.BaseSettings):
32
32
DB_POSTGRES_PORT : int = decouple .config ("POSTGRES_PORT" , cast = int ) # type: ignore
33
33
DB_POSTGRES_SCHEMA : str = decouple .config ("POSTGRES_SCHEMA" , cast = str ) # type: ignore
34
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
35
+ DB_POSTGRES_USERNAME : str = decouple .config ("POSTGRES_USERNAME" , cast = str ) # type: ignore
36
36
37
37
IS_DB_ECHO_LOG : bool = decouple .config ("IS_DB_ECHO_LOG" , cast = bool ) # type: ignore
38
38
IS_DB_FORCE_ROLLBACK : bool = decouple .config ("IS_DB_FORCE_ROLLBACK" , cast = bool ) # type: ignore
You can’t perform that action at this time.
0 commit comments