From 1e05a7409ffaa7068329503578fbb774778d4970 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 16 May 2026 20:13:30 -0400 Subject: [PATCH] fix example env: align POSTGRES_PASSWORD placeholder with DATABASE_URL Both must use the same value. Previously POSTGRES_PASSWORD was set to a real password near the bottom of the file while DATABASE_URL used 'change-me', making the mismatch easy to miss. Co-Authored-By: Claude Sonnet 4.6 --- .env.docker.production.example | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.env.docker.production.example b/.env.docker.production.example index e288886..4769709 100644 --- a/.env.docker.production.example +++ b/.env.docker.production.example @@ -35,7 +35,8 @@ JWT_EXPIRY=8h RENTER_JWT_EXPIRY=7d # ── Database ────────────────────────────────────────────────────────────────── -POSTGRES_PASSWORD=24DY@1u5FLCkNMeiO@p +# IMPORTANT: POSTGRES_PASSWORD must match the password in DATABASE_URL above +POSTGRES_PASSWORD=change-me NODE_ENV=production # ── Email (choose one: Resend API or SMTP) ────────────────────────────────────