From b18d436ae4f047e6d859b0ff6f280164e2195fb8 Mon Sep 17 00:00:00 2001 From: Mohit Agarwal Date: Sat, 13 Jun 2026 11:50:27 +0530 Subject: [PATCH] docs: remove quotes from echo command for windows cross-platform compatibility --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 30d90df..7c0ee89 100644 --- a/README.md +++ b/README.md @@ -792,8 +792,9 @@ cd CodeLens/frontend # 2. Install dependencies npm install -# 3. Create environment file -echo "VITE_API_BASE_URL=http://localhost:5000/api" > .env +# 3. Create environment file (Remove quotes to ensure cross-platform compatibility for Windows users) +echo VITE_API_BASE_URL=http://localhost:5000/api > .env + # 4. Start the development server npm run dev