aboutsummaryrefslogtreecommitdiff
path: root/docs/development
diff options
context:
space:
mode:
authorRobin Westerik <64894343+robinwesterik@users.noreply.github.com>2023-03-03 16:20:53 +0700
committerGitHub <noreply@github.com>2023-03-03 10:20:53 +0100
commit7cde99a7a708761937b051cb9e4ddc9e4f35796a (patch)
tree7496220e23c77e0212304408d45eb71658753538 /docs/development
parent6b1c9eafa97cb02dd902ddbf2676c709c86f9625 (diff)
Updated instructions and references to monolith to their new names (#2994)
Currently, the documentation makes use of the old names for the binary and configuration files. This updates the documentation so that users can follow the guide without issues again. These changes don't require any go unit tests because it does not modify any golang code. Signed-off-by: `Robin Westerik <gh@westerik.me>`
Diffstat (limited to 'docs/development')
-rw-r--r--docs/development/PROFILING.md2
-rw-r--r--docs/development/coverage.md10
-rw-r--r--docs/development/tracing/setup.md2
3 files changed, 7 insertions, 7 deletions
diff --git a/docs/development/PROFILING.md b/docs/development/PROFILING.md
index f3b57347..57c37a90 100644
--- a/docs/development/PROFILING.md
+++ b/docs/development/PROFILING.md
@@ -15,7 +15,7 @@ Dendrite contains an embedded profiler called `pprof`, which is a part of the st
To enable the profiler, start Dendrite with the `PPROFLISTEN` environment variable. This variable specifies which address and port to listen on, e.g.
```
-PPROFLISTEN=localhost:65432 ./bin/dendrite-monolith-server ...
+PPROFLISTEN=localhost:65432 ./bin/dendrite ...
```
If pprof has been enabled successfully, a log line at startup will show that pprof is listening:
diff --git a/docs/development/coverage.md b/docs/development/coverage.md
index f3e39ddd..c4a8a117 100644
--- a/docs/development/coverage.md
+++ b/docs/development/coverage.md
@@ -14,8 +14,8 @@ index 8f0e209c..ad057e52 100644
$output->diag( "Starting monolith server" );
my @command = (
-- $self->{bindir} . '/dendrite-monolith-server',
-+ $self->{bindir} . '/dendrite-monolith-server', '--test.coverprofile=' . $self->{hs_dir} . '/integrationcover.log', "DEVEL",
+- $self->{bindir} . '/dendrite',
++ $self->{bindir} . '/dendrite', '--test.coverprofile=' . $self->{hs_dir} . '/integrationcover.log', "DEVEL",
'--config', $self->{paths}{config},
'--http-bind-address', $self->{bind_host} . ':' . $self->unsecure_port,
'--https-bind-address', $self->{bind_host} . ':' . $self->secure_port,
@@ -27,9 +27,9 @@ index f009332b..7ea79869 100755
echo >&2 "--- Building dendrite from source"
cd /src
mkdir -p $GOBIN
--go install -v ./cmd/dendrite-monolith-server
-+# go install -v ./cmd/dendrite-monolith-server
-+go test -c -cover -covermode=atomic -o $GOBIN/dendrite-monolith-server -coverpkg "github.com/matrix-org/..." ./cmd/dendrite-monolith-server
+-go install -v ./cmd/dendrite
++# go install -v ./cmd/dendrite
++go test -c -cover -covermode=atomic -o $GOBIN/dendrite -coverpkg "github.com/matrix-org/..." ./cmd/dendrite
go install -v ./cmd/generate-keys
cd -
```
diff --git a/docs/development/tracing/setup.md b/docs/development/tracing/setup.md
index a9e90c64..cef1089e 100644
--- a/docs/development/tracing/setup.md
+++ b/docs/development/tracing/setup.md
@@ -49,7 +49,7 @@ tracing:
then run the monolith server:
```
-./dendrite-monolith-server --tls-cert server.crt --tls-key server.key --config dendrite.yaml
+./dendrite --tls-cert server.crt --tls-key server.key --config dendrite.yaml
```
## Checking traces