mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-06 22:43:10 -06:00
* Add build page; correct proxy info; fix Caddy example * Improve Caddyfile example * Apply review comments; add polylith Caddyfile
779 B
779 B
| title | parent | has_toc | nav_order | permalink |
|---|---|---|---|---|
| Building Dendrite | Installation | true | 3 | /installation/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 build.sh (Linux/Mac):
./build.sh
or build.cmd (Windows):
build.cmd
The resulting binaries will be placed in the bin subfolder.
Installing as a monolith
You can install the Dendrite monolith binary into $GOPATH/bin by using go install:
go install ./cmd/dendrite-monolith-server
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-monolith-server