From 25f9dd62b189a946e845af36375fc152f16ea195 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Wed, 26 Mar 2025 16:06:00 -0700 Subject: [PATCH] remove .env file from testing and app-integration-test flows --- docker-compose.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index a3153d6..d6d823c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,12 +10,14 @@ services: volumes: - .:/usr/src/app + # Note that neither app-integration-test or test modes require env variables, + # need to find a way to pass variables without .env if this changes + app-integration-test: build: . command: npm run start:dev integration-testing ports: - "4000:4000" - env_file: .env depends_on: - redis volumes: @@ -24,7 +26,6 @@ services: test: build: . command: npm run test - env_file: .env depends_on: - redis volumes: