From f94c2d842492c03b8110632b145d0afc6944803a Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Wed, 1 Apr 2026 00:00:11 -0700 Subject: [PATCH] fix(web): add NEXT_PUBLIC_CHRONOMIND_BACKEND_URL to .env.example The fetchEnrichedMessage() function in context-messages.ts references this env var but it was missing from .env.example, making it invisible to new developers setting up the project. --- web/.env.example | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/.env.example b/web/.env.example index b93653f..4bc1330 100644 --- a/web/.env.example +++ b/web/.env.example @@ -4,3 +4,6 @@ # Platform Service (backend API for sync, auth, telemetry) NEXT_PUBLIC_PLATFORM_SERVICE_URL=http://localhost:4003/api NEXT_PUBLIC_PRODUCT_ID=chronomind + +# ChronoMind Backend (product-specific API for timers, routines, context messages) +NEXT_PUBLIC_CHRONOMIND_BACKEND_URL=http://localhost:4011