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
This commit is contained in:
root
2026-02-27 11:52:07 -06:00
parent c9e2452314
commit bda638a628

View File

@@ -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