From 71ee8146d689d9f1a0fa66ecc068cb6f7c30c7fa Mon Sep 17 00:00:00 2001 From: Cubix33 Date: Sun, 4 Jan 2026 17:32:39 +0530 Subject: [PATCH 1/2] #207 issue fix - docs update --- docs/INSTALL_GUIDE.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/INSTALL_GUIDE.md b/docs/INSTALL_GUIDE.md index 8849d5d..6731976 100644 --- a/docs/INSTALL_GUIDE.md +++ b/docs/INSTALL_GUIDE.md @@ -58,7 +58,7 @@ nano .env # or use your preferred editor 6. **Set up Docker container** ```sh cd backend -docker-compose up -d # Start weaviate, falkordb, rabbitmq +docker compose up -d # Start weaviate, falkordb, rabbitmq ``` 7. **Start Docker containers** @@ -83,7 +83,7 @@ npm run dev ## Environment Variables -Create a `.env` file in the project root with the following variables: +1. Create a `.env` file in the project root with the following variables: ### Required Variables ```env @@ -102,6 +102,12 @@ SUPABASE_KEY=your_supabase_anon_key_here # Backend Configuration BACKEND_URL=http://localhost:8000 ``` +2. Create an .env file in the frontend folder with the following variables: + +```env +VITE_SUPABASE_URL=your_supabase_url_here +VITE_SUPABASE_KEY=your_supabase_anon_key_here +``` ### Optional Variables ```env From bf9608fff9f7e3684ee81eb0c4e69a53f262245e Mon Sep 17 00:00:00 2001 From: Cubix33 Date: Sun, 4 Jan 2026 17:52:37 +0530 Subject: [PATCH 2/2] updated all instances of old docker command --- docs/INSTALL_GUIDE.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/INSTALL_GUIDE.md b/docs/INSTALL_GUIDE.md index 6731976..63006ef 100644 --- a/docs/INSTALL_GUIDE.md +++ b/docs/INSTALL_GUIDE.md @@ -164,7 +164,7 @@ Weaviate is used for semantic search and embeddings storage. It runs in Docker: ```sh cd backend -docker-compose up -d weaviate +docker compose up -d weaviate ``` The database will be available at `http://localhost:8080` @@ -241,8 +241,8 @@ npm run lint # Run ESLint docker ps # Restart Weaviate - docker-compose down - docker-compose up -d weaviate + docker compose down + docker compose up -d weaviate ``` 3. **Missing environment variables** @@ -256,7 +256,7 @@ npm run lint # Run ESLint ### Logs - Backend logs are displayed in the terminal where you run `python main.py` -- Check Docker logs for Weaviate: `docker-compose logs weaviate` +- Check Docker logs for Weaviate: `docker compose logs weaviate` ## Project Structure