Skip to content

Commit 413cff9

Browse files
author
amar-python
committed
fix: change PGPORT default from 5433 to 5432 (standard PostgreSQL port)
1 parent 06596b2 commit 413cff9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class Settings:
77
PG_HOST: str = os.environ.get("PGHOST", "localhost")
8-
PG_PORT: int = int(os.environ.get("PGPORT", "5433"))
8+
PG_PORT: int = int(os.environ.get("PGPORT", "5432"))
99
PG_USER: str = os.environ.get("PGUSER", "postgres")
1010
PG_PASSWORD: str = os.environ.get("PGPASSWORD", "")
1111
PG_DATABASE: str = os.environ.get("PGDATABASE", "te_mgmt_dev")

0 commit comments

Comments
 (0)