From d3e8ffd2b2876f762ea0210f8d74c3712a3fca2a Mon Sep 17 00:00:00 2001 From: Shuntian Liu Date: Sat, 19 Jul 2025 16:40:04 +0100 Subject: [PATCH] fix: Add postgres envvar to dev.env The postgres envvar is missing in the dev.env, and this results in postgres' health check failing as it uses these envvars. this makes the health check default envvar like `POSTGRES_USER` to blank string. For some reason it is not enough just to specify them in the environment section of the docker compose file so add these to dev.env just like deploy.env --- dev.env | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev.env b/dev.env index 7054d0c89..3ee6459c7 100644 --- a/dev.env +++ b/dev.env @@ -14,6 +14,14 @@ DATABASE_URL=postgres://postgres:password@localhost:5432/postgres # .sqlx files must be pregenerated # SQLX_OFFLINE=true +# PostgreSQL Settings +POSTGRES_HOST=postgres +POSTGRES_USER=postgres +POSTGRES_PASSWORD=password +POSTGRES_PORT=5432 +POSTGRES_DB=postgres + + # ============================================================================= # ☁️ APPFLOWY SERVICES: Application service configuration # =============================================================================