From 635ae9529443744646dca4e7b71f8eab7e11ee6a Mon Sep 17 00:00:00 2001 From: Asis Ferrer Date: Wed, 12 Nov 2025 20:36:34 +0100 Subject: [PATCH] refactor: standardize NODE_ENV and DEMO_MODE settings in environment files --- .env.example | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.env.example b/.env.example index c74e7a5..a1c50c8 100644 --- a/.env.example +++ b/.env.example @@ -9,6 +9,8 @@ POSTGRES_DB=postgres DATABASE_URL="postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}?schema=public" # FRONTEND +NODE_ENV=production +DEMO_MODE=false DOMAIN=localhost AUTH_TRUST_HOST="http://localhost" AUTH_SECRET=your_secret_key_here \ No newline at end of file