updates to install procedures

This commit is contained in:
2026-04-11 16:55:25 -04:00
parent 90d6f83937
commit 078576eedc

View File

@@ -55,7 +55,7 @@ If Ollama is not running yet, skip to [§3](#3-install-ollama--embedding-model)
# The project root must be writable (not inside /System or a read-only mount). # The project root must be writable (not inside /System or a read-only mount).
DESTINATION="$HOME/dev/obsidian-rag" DESTINATION="$HOME/dev/obsidian-rag"
mkdir -p "$HOME/dev" mkdir -p "$HOME/dev"
git clone https://github.com/YOUR_GITHUB_USER/obsidian-rag.git "$DESTINATION" git clone https://git.phostrich.com/santhoshj/obsidian-rag.git "$DESTINATION"
cd "$DESTINATION" cd "$DESTINATION"
``` ```
@@ -63,7 +63,7 @@ cd "$DESTINATION"
> **Note for existing clones:** If you are re-running this guide on an already-cloned copy, pull the latest changes first: > **Note for existing clones:** If you are re-running this guide on an already-cloned copy, pull the latest changes first:
> ```bash > ```bash
> git pull origin main > git pull origin model/minimax
> ``` > ```
--- ---