python --version # Should be 3.10 or higherpython -m venv .venv
source .venv/bin/activate # Mac/Linux
# .venv\Scripts\activate # Windowspip install -r requirements.txtCreate .env file:
GROQ_API_KEY=your_groq_api_key
GOOGLE_SHEETS_ID=your_sheet_id
DASHBOARD_USERNAME=your_username
DASHBOARD_PASSWORD=your_password
Add credentials.json (Google service account key)
./scripts/start.shOpen: http://localhost:8000
| Page | URL |
|---|---|
| Chat | http://localhost:8000 |
| Dashboard | http://localhost:8000/dashboard |
| Health | http://localhost:8000/health |