From 31d7c528bdb6e7700f37e19f53b5c74f37886f1c Mon Sep 17 00:00:00 2001 From: "johnandersen777.bsky.social" Date: Sun, 13 Jul 2025 07:58:12 +0000 Subject: [PATCH] docs: spindle: update go build command The build command was out of date, needed path change to `./cmd/spindle/main.go` and mod download --- docs/spindle/hosting.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/spindle/hosting.md b/docs/spindle/hosting.md index 51bce177..dea88deb 100644 --- a/docs/spindle/hosting.md +++ b/docs/spindle/hosting.md @@ -31,13 +31,15 @@ Spindle is configured using environment variables. The following environment var 2. **Build the Spindle binary.** ```shell - go build -o spindle core/spindle/server.go + cd core + go mod download + go build -o cmd/spindle/spindle cmd/spindle/main.go ``` 3. **Run the Spindle binary.** ```shell - ./spindle + ./cmd/spindle/spindle ``` Spindle will now start, connect to the Jetstream server, and begin processing pipelines. -- 2.51.2