mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
22 lines
465 B
Markdown
22 lines
465 B
Markdown
---
|
|
title: Installing as a monolith
|
|
parent: Installation
|
|
has_toc: true
|
|
nav_order: 5
|
|
permalink: /installation/install/monolith
|
|
---
|
|
|
|
# Installing as a monolith
|
|
|
|
You can install the Dendrite monolith binary into `$GOPATH/bin` by using `go install`:
|
|
|
|
```sh
|
|
go install ./cmd/dendrite-monolith-server
|
|
```
|
|
|
|
Alternatively, you can specify a custom path for the binary to be written to using `go build`:
|
|
|
|
```sh
|
|
go build -o /usr/local/bin/ ./cmd/dendrite-monolith-server
|
|
```
|