From 09e1922178fe033a150cb59871458d523515cfff Mon Sep 17 00:00:00 2001 From: Denshi Date: Sun, 4 Jun 2023 18:07:41 +0400 Subject: Added monerod guide, minor corrections in other articles --- content/dendrite.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'content/dendrite.md') 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] -- cgit v1.2.3