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