summaryrefslogtreecommitdiff
path: root/content/dendrite.md
diff options
context:
space:
mode:
authorDenshi <alex@denshi.org>2023-06-04 18:07:41 +0400
committerDenshi <alex@denshi.org>2023-06-04 18:07:41 +0400
commit09e1922178fe033a150cb59871458d523515cfff (patch)
tree2c639f6cce6c4fdfc1e81b2962e44d10cb65299f /content/dendrite.md
parentb12633fa2680743d28a78c05beed686b5ca45047 (diff)
Added monerod guide, minor corrections in other articles
Diffstat (limited to 'content/dendrite.md')
-rw-r--r--content/dendrite.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/dendrite.md b/content/dendrite.md
index 79d2417..9a7a291 100644
--- a/content/dendrite.md
+++ b/content/dendrite.md
@@ -118,10 +118,10 @@ Now download the Dendrite repository using `git` and change directory to it:
git clone https://github.com/matrix-org/dendrite
cd dendrite
```
-Finally, run the `./build.sh` script to compile Dendrite:
+Finally, compile Dendrite using `go build`:
```sh
-./build.sh
+go build -o bin/ ./cmd/...
```
*This might take a few minutes,* but once the process is finished you should find the final Dendrite programs populating the `bin/` directory.
@@ -231,7 +231,7 @@ chown -R dendrite:dendrite /opt/dendrite
### Setting up a systemd Service
-Now setup a **systemd service** to run Dendrite automatically for you. Make sure to set the `WorkingDirectory` to the directory where your Dendrite repository is located!
+Now setup a **systemd service** in `/etc/systemd/system/dendrite.service` to run Dendrite automatically for you. Make sure to set the `WorkingDirectory` to the directory where your Dendrite repository is located!
```systemd
[Unit]