forked from tangled.org/core
Monorepo for Tangled — https://tangled.org

docs: spindle: update go build command

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
+
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.