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):
3232 DB_POSTGRES_PORT : int = decouple .config ("POSTGRES_PORT" , cast = int ) # type: ignore
3333 DB_POSTGRES_SCHEMA : str = decouple .config ("POSTGRES_SCHEMA" , cast = str ) # type: ignore
3434 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
3636
3737 IS_DB_ECHO_LOG : bool = decouple .config ("IS_DB_ECHO_LOG" , cast = bool ) # type: ignore
3838 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