forked from tangled.org/core
this repo has no description

docs: spindle: update go build command

The build command was out of date, needed path change to `./cmd/spindle/main.go` and mod download

authored by johnandersen777.bsky.social and committed by Tangled 31d7c528 1e31ae85

Changed files
+4 -2
docs
spindle
+4 -2
docs/spindle/hosting.md
··· 31 31 2. **Build the Spindle binary.** 32 32 33 33 ```shell 34 - go build -o spindle core/spindle/server.go 34 + cd core 35 + go mod download 36 + go build -o cmd/spindle/spindle cmd/spindle/main.go 35 37 ``` 36 38 37 39 3. **Run the Spindle binary.** 38 40 39 41 ```shell 40 - ./spindle 42 + ./cmd/spindle/spindle 41 43 ``` 42 44 43 45 Spindle will now start, connect to the Jetstream server, and begin processing pipelines.