Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions docs/INSTALL_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand All @@ -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
Expand All @@ -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
Expand Down