This documentation is out of date!

This documentation site is for the versions of Dendrite maintained by the Matrix.org Foundation (github.com/matrix-org/dendrite), available under the Apache 2.0 licence.

If you are interested in the documentation for a later version of Dendrite, please refer to https://element-hq.github.io/dendrite/.

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