Skip to content

Commit

Permalink
Added a default to the INST_DB_SCHEME of "postgresql+asyncpg" just in…
Browse files Browse the repository at this point in the history
… case a developer

has the lastest version of config.yp (after this is merged in) but does not have an updated
set of env vars
  • Loading branch information
jcadam14 committed Jan 2, 2024
1 parent 4b9ade1 commit ed81961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Settings(BaseSettings):
inst_db_user: str
inst_db_pwd: str
inst_db_host: str
inst_db_scheme: str
inst_db_scheme: str = "postgresql+asyncpg"
inst_conn: Optional[PostgresDsn] = None
auth_client: str
auth_url: HttpUrl
Expand Down

0 comments on commit ed81961

Please sign in to comment.