0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-14 02:18:34 +02:00
dendrite/docs/installation/manual/1_build.md
Till f956a8c1d9
Docs restructure (#2953)
Needs to be merged into `gh-pages` later on.
2023-05-30 10:02:53 +02:00

709 B

title parent grand_parent has_toc nav_order permalink
Building/Installing Dendrite Manual Installation true 1 /installation/manual/build

Build all Dendrite commands

Dendrite has numerous utility commands in addition to the actual server binaries. Build them all from the root of the source repo with:

go build -o bin/ ./cmd/...

The resulting binaries will be placed in the bin subfolder.

Installing Dendrite

You can install the Dendrite binary into $GOPATH/bin by using go install:

go install ./cmd/dendrite

Alternatively, you can specify a custom path for the binary to be written to using go build:

go build -o /usr/local/bin/ ./cmd/dendrite