From 7f71a3e32816727a920faecb93f31078b0f07f00 Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Fri, 22 Aug 2025 19:48:19 -0400 Subject: [PATCH] Added in a .env.example file. Signed-off-by: Cliff Hill --- backend/.env | 2 +- compose.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/.env b/backend/.env index c7c98ef9..ad307c7d 100644 --- a/backend/.env +++ b/backend/.env @@ -1,5 +1,5 @@ POSTGRES_USER=user POSTGRES_PASSWORD=password POSTGRES_DB=mydb -POSTGRES_HOST=postgres +POSTGRES_HOST=localhost POSTGRES_PORT=5432 diff --git a/compose.yml b/compose.yml index eeec2853..69b69542 100644 --- a/compose.yml +++ b/compose.yml @@ -9,6 +9,7 @@ services: - "8000:8000" environment: ENVIRONMENT: production + POSTGRES_HOST: postgres depends_on: postgres: condition: service_healthy