From bdfeb6932216e41340aabc2780e7a96381c5a003 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 27 Feb 2026 11:00:57 -0600 Subject: [PATCH] docs: update Quick Start with install script option - Add Option 1: Quick Install using install.sh - Add Option 2: Manual Install (original) - Update verification section - Make install script the recommended path --- README.md | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c343c82..5010989 100644 --- a/README.md +++ b/README.md @@ -63,26 +63,43 @@ Choose one: Gems OR Blocks (not both). ## Quick Start -### 1. Install +### Option 1: Quick Install (Recommended) ```bash -cd /root/.openclaw/workspace/.local_projects/true-recall-base +cd /path/to/true-recall-base +./install.sh +``` + +The installer will prompt for: +- Qdrant IP (default: localhost) +- Ollama IP (default: localhost) +- User ID (default: user) + +Then automatically configures and starts the service. + +### Option 2: Manual Install + +```bash +cd /path/to/true-recall-base # Copy service file sudo cp watcher/mem-qdrant-watcher.service /etc/systemd/system/ +# Edit the service file to set your IPs and user +sudo nano /etc/systemd/system/mem-qdrant-watcher.service + # Reload and start sudo systemctl daemon-reload sudo systemctl enable --now mem-qdrant-watcher ``` -### 2. Verify +### Verify Installation ```bash -# Check service +# Check service status sudo systemctl status mem-qdrant-watcher -# Check collection (replace with your Qdrant IP) +# Check collection curl -s http://:6333/collections/memories_tr | jq '.result.points_count' ```