From bda638a62889ccdb320b4001cb4de696ad6dd5a7 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 27 Feb 2026 11:52:07 -0600 Subject: [PATCH] docs: add IP examples and port info to install prompts - Show example IPs: localhost, 10.0.0.40, 192.168.1.10 - Clarify default ports (6333 for Qdrant, 11434 for Ollama) - Help users understand expected input format --- install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index efad8b8..e51a2d8 100644 --- a/install.sh +++ b/install.sh @@ -18,11 +18,13 @@ DEFAULT_USER_ID="user" # Get user input with defaults echo "Configuration (press Enter for defaults):" echo "" +echo "Examples: localhost, 10.0.0.40, 192.168.1.10" +echo "" -read -p "Qdrant IP [$DEFAULT_QDRANT_IP]: " QDRANT_IP +read -p "Qdrant IP (port 6333) [$DEFAULT_QDRANT_IP]: " QDRANT_IP QDRANT_IP=${QDRANT_IP:-$DEFAULT_QDRANT_IP} -read -p "Ollama IP [$DEFAULT_OLLAMA_IP]: " OLLAMA_IP +read -p "Ollama IP (port 11434) [$DEFAULT_OLLAMA_IP]: " OLLAMA_IP OLLAMA_IP=${OLLAMA_IP:-$DEFAULT_OLLAMA_IP} read -p "User ID [$DEFAULT_USER_ID]: " USER_ID