Skip to content

Commit 6bb48f5

Browse files
committed
fix(docs): correct binary path in Clean Install Guide and update install script feature list
1 parent d800cd4 commit 6bb48f5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CLEAN_INSTALL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Follow these steps to remove every trace of a previous CodeGraph MCP installatio
66
Close every terminal session that is running `codegraph start …` (Ctrl+C) so no process holds binaries or logs open.
77

88
2. **Remove installed binaries**
9-
If you used the installer, it dropped symlinks/binaries into `/usr/local/bin`. Remove them:
9+
If you used the installer, it dropped symlinks/binaries into `/usr/.local/bin`. Remove them:
1010
```bash
11-
sudo rm -f /usr/local/bin/codegraph
11+
sudo rm -f /usr/.local/bin/codegraph
1212
```
1313

1414
3. **Delete the installer support directory**
@@ -32,7 +32,7 @@ Follow these steps to remove every trace of a previous CodeGraph MCP installatio
3232
```bash
3333
./install-codegraph-cloud.sh
3434
```
35-
This recreates `/usr/local/bin/codegraph` pointing at the freshly built release binary.
35+
This recreates `/usr/.local/bin/codegraph` pointing at the freshly built release binary.
3636

3737
7. **Rebuild your development binary**
3838
Inside the repo, rebuild with the required features so the local `target/` tree matches your latest changes:

install-codegraph-full-features.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set -euo pipefail
66

77
# Comprehensive feature set - everything enabled
8-
FEATURES="daemon,ai-enhanced,embeddings-local,embeddings-openai,embeddings-ollama,embeddings-jina,embeddings-lmstudio,codegraph-vector/jina,codegraph-graph/surrealdb,codegraph-ai/all-cloud-providers,server-http,autoagents-experimental,qwen-integration"
8+
FEATURES="daemon,ai-enhanced,embeddings-local,embeddings-openai,embeddings-ollama,embeddings-jina,embeddings-lmstudio,codegraph-vector/jina,codegraph-graph/surrealdb,codegraph-ai/all-cloud-providers,server-http,autoagents-experimental"
99
SURR_URL="${CODEGRAPH_SURREALDB_URL:-ws://localhost:3004}"
1010
SURR_NAMESPACE="${CODEGRAPH_SURREALDB_NAMESPACE:-ouroboros}"
1111
SURR_DATABASE="${CODEGRAPH_SURREALDB_DATABASE:-codegraph}"

0 commit comments

Comments
 (0)