Skip to content

Commit a21e6c7

Browse files
committed
fix: change default db name and user
1 parent f463bad commit a21e6c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rmmtxauthz/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class DBSettings(BaseSettings):
2020
driver: str = "postgresql"
2121
host: str = "localhost"
2222
port: int = 5432
23-
user: str = "rmmtxauthz"
23+
user: str = "rmmtx"
2424
password: str = "<PASSWORD>" # pragma: allowlist secret
25-
database: str = "rmmtxauthz"
25+
database: str = "rmmtx"
2626
echo: bool = False
2727

2828
model_config = SettingsConfigDict(env_prefix="RMMTX_DATABASE_", extra="ignore")

0 commit comments

Comments
 (0)