From e3309503d77871786f1cb312d22038353ebabaad Mon Sep 17 00:00:00 2001 From: root Date: Thu, 26 Feb 2026 21:43:24 -0600 Subject: [PATCH] docs: sanitize IP addresses in README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Replace hardcoded IPs with placeholders - QDRANT_URL: 10.0.0.40 → - OLLAMA_URL: 10.0.0.10 → - USER_ID: rob → - Update verification example command --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a619b35..c8131a8 100644 --- a/README.md +++ b/README.md @@ -75,8 +75,8 @@ sudo systemctl enable --now mem-qdrant-watcher # Check service sudo systemctl status mem-qdrant-watcher -# Check collection -curl -s http://10.0.0.40:6333/collections/memories_tr | jq '.result.points_count' +# Check collection (replace with your Qdrant IP) +curl -s http://:6333/collections/memories_tr | jq '.result.points_count' ``` --- @@ -97,10 +97,10 @@ Edit `config.json` or set environment variables: | Variable | Default | Description | |----------|---------|-------------| -| `QDRANT_URL` | `http://10.0.0.40:6333` | Qdrant endpoint | -| `OLLAMA_URL` | `http://10.0.0.10:11434` | Ollama endpoint | +| `QDRANT_URL` | `http://:6333` | Qdrant endpoint | +| `OLLAMA_URL` | `http://:11434` | Ollama endpoint | | `EMBEDDING_MODEL` | `snowflake-arctic-embed2` | Embedding model | -| `USER_ID` | `rob` | User identifier | +| `USER_ID` | `` | User identifier | ---