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