docs: spindle: update go build command #291

merged
opened by johnandersen777.bsky.social targeting master

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

Changed files
+4 -2
docs
spindle
+4 -2
docs/spindle/hosting.md
···
2. **Build the Spindle binary.**
```shell
-
go build -o spindle core/spindle/server.go
```
3. **Run the Spindle binary.**
```shell
-
./spindle
```
Spindle will now start, connect to the Jetstream server, and begin processing pipelines.
···
2. **Build the Spindle binary.**
```shell
+
cd core
+
go mod download
+
go build -o cmd/spindle/spindle cmd/spindle/main.go
```
3. **Run the Spindle binary.**
```shell
+
./cmd/spindle/spindle
```
Spindle will now start, connect to the Jetstream server, and begin processing pipelines.