From 40165f28d55747dee18cfc62340e9108c3275531 Mon Sep 17 00:00:00 2001 From: "Sol Astrius (Daniel Gorlov)" Date: Fri, 27 Mar 2026 03:13:21 +0200 Subject: [PATCH] fix: replace remaining pufit references with ClickHouse in URLs --- README.md | 2 +- docs/setup.md | 6 +++--- docs/worker-guide.md | 2 +- install.sh | 10 +++++----- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f7581860..b78002de 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ The installer handles everything — installs dependencies (Python, Node.js, uv) **Prerequisites:** [Git](https://git-scm.com/), [Python 3.13+](https://www.python.org/), [uv](https://docs.astral.sh/uv/), [Node.js 18+](https://nodejs.org/) ```bash -git clone https://github.com/pufit/nerve.git && cd nerve +git clone https://github.com/ClickHouse/nerve.git && cd nerve uv venv --python 3.13 && source .venv/bin/activate uv pip install -e . cd web && npm ci && npm run build && cd .. diff --git a/docs/setup.md b/docs/setup.md index 4b905daf..5f23119f 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -5,7 +5,7 @@ The fastest way to get Nerve running: ```bash -git clone https://github.com/pufit/nerve.git nerve +git clone https://github.com/ClickHouse/nerve.git nerve cd nerve pip install -e . # or: uv pip install -e . cd web && npm install && npm run build && cd .. @@ -31,7 +31,7 @@ The `nerve init` wizard walks you through deployment, mode selection, API keys, ### Option A: Server (bare metal) ```bash -git clone https://github.com/pufit/nerve.git nerve +git clone https://github.com/ClickHouse/nerve.git nerve cd nerve # Create virtual environment @@ -51,7 +51,7 @@ nerve init ### Option B: Docker ```bash -git clone https://github.com/pufit/nerve.git nerve +git clone https://github.com/ClickHouse/nerve.git nerve cd nerve pip install -e . # Needed to run the wizard on the host nerve init # Choose "docker" at the deployment step diff --git a/docs/worker-guide.md b/docs/worker-guide.md index 7cad0d87..56b99573 100644 --- a/docs/worker-guide.md +++ b/docs/worker-guide.md @@ -6,7 +6,7 @@ Worker mode deploys Nerve as a task-focused autonomous agent. Give it a job desc ```bash # Clone and install -git clone https://github.com/pufit/nerve.git nerve +git clone https://github.com/ClickHouse/nerve.git nerve cd nerve uv venv && source .venv/bin/activate uv pip install -e . diff --git a/install.sh b/install.sh index ecf5df2b..26644d7c 100755 --- a/install.sh +++ b/install.sh @@ -1,10 +1,10 @@ #!/usr/bin/env bash # # Nerve Installer -# https://github.com/pufit/nerve +# https://github.com/ClickHouse/nerve # # Usage: -# curl -fsSL https://raw.githubusercontent.com/pufit/nerve/main/install.sh | bash +# curl -fsSL https://raw.githubusercontent.com/ClickHouse/nerve/main/install.sh | bash # # Environment variables: # NERVE_INSTALL_DIR — Where to clone the repo (default: ~/nerve) @@ -14,7 +14,7 @@ set -euo pipefail # --- Configuration --- -NERVE_REPO="https://github.com/pufit/nerve.git" +NERVE_REPO="https://github.com/ClickHouse/nerve.git" NERVE_BRANCH="${NERVE_BRANCH:-main}" INSTALL_DIR="${NERVE_INSTALL_DIR:-$HOME/nerve}" MIN_PYTHON_MINOR=12 @@ -502,10 +502,10 @@ print_summary() { usage() { cat <