From 2ca3f641192ac9ae633cc2b26aa3372fd78de989 Mon Sep 17 00:00:00 2001 From: Mohit Agarwal Date: Thu, 18 Jun 2026 10:17:04 +0530 Subject: [PATCH 1/3] docs: add missing env configuration step to docker quick start --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7d817f0..78aa034 100644 --- a/README.md +++ b/README.md @@ -259,14 +259,13 @@ You can run the entire multi-service application easily using Docker Compose. Th ### Prerequisites - [Docker](https://docs.docker.com/get-docker/) - [Docker Compose](https://docs.docker.com/compose/install/) - ### Quick Start 1. Clone the repository and navigate to the project root. -2. Build and start all services in detached mode: +2. Set up your environment variables by copying the example file and adding a secure `INTERNAL_RAG_TOKEN`: ```bash -docker-compose up -d --build +cp .env.example .env ``` 3. The services will be available at: From f0bf388a50ebbc97a8d6683c72cf1cba8e838332 Mon Sep 17 00:00:00 2001 From: Mohit Agarwal Date: Thu, 18 Jun 2026 10:57:39 +0530 Subject: [PATCH 2/3] docs: add explicit instruction to edit .env for INTERNAL_RAG_TOKEN --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78aa034..35752df 100644 --- a/README.md +++ b/README.md @@ -262,7 +262,7 @@ You can run the entire multi-service application easily using Docker Compose. Th ### Quick Start 1. Clone the repository and navigate to the project root. -2. Set up your environment variables by copying the example file and adding a secure `INTERNAL_RAG_TOKEN`: +2. Initialize your environment variables by copying the example file: ```bash cp .env.example .env From 9ad54ca2f8c659f1d2732d4a24cf882d9f311690 Mon Sep 17 00:00:00 2001 From: Mohit-001-hash Date: Thu, 18 Jun 2026 19:46:31 +0530 Subject: [PATCH 3/3] Update README with .env configuration instruction Added instruction to edit the .env file for INTERNAL_RAG_TOKEN. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35752df..99ef766 100644 --- a/README.md +++ b/README.md @@ -267,7 +267,7 @@ You can run the entire multi-service application easily using Docker Compose. Th ```bash cp .env.example .env ``` - +Edit `.env` and set `INTERNAL_RAG_TOKEN` to a secure random value. 3. The services will be available at: - **Frontend UI**: http://localhost:3000 - **Express API Gateway**: http://localhost:4000