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
··· 31 2. **Build the Spindle binary.** 32 33 ```shell 34 - go build -o spindle core/spindle/server.go 35 ``` 36 37 3. **Run the Spindle binary.** 38 39 ```shell 40 - ./spindle 41 ``` 42 43 Spindle will now start, connect to the Jetstream server, and begin processing pipelines.
··· 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.