···31312. **Build the Spindle binary.**32323333 ```shell3434- go build -o spindle core/spindle/server.go3434+ cd core3535+ go mod download3636+ go build -o cmd/spindle/spindle cmd/spindle/main.go3537 ```363837393. **Run the Spindle binary.**38403941 ```shell4040- ./spindle4242+ ./cmd/spindle/spindle4143 ```42444345Spindle will now start, connect to the Jetstream server, and begin processing pipelines.