chore: switch default postgres host port to 5434

This commit is contained in:
chengkml
2026-05-01 10:49:29 +08:00
parent 792f5037c7
commit c7b018b10a
6 changed files with 35 additions and 7 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ class Settings(BaseSettings):
database_url: str | None = None
db_host: str = "127.0.0.1"
db_port: int = 5433
db_port: int = 5434
db_name: str = "postgres"
db_schema: str = "public"
db_username: str = "fquiz"