Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Document how to run Synapse #15022

Merged
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/15022.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Document how to start Synapse in the contributing guide.
11 changes: 11 additions & 0 deletions docs/development/contributing_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,17 @@ poetry install --extras all

This will install the runtime and developer dependencies for the project.

Create a config file:
DMRobertson marked this conversation as resolved.
Show resolved Hide resolved

```sh
cp docs/sample_config.yaml homeserver.yaml
```

Now edit homeserver.yaml, and run Synapse with:

```sh
poetry run python synapse/app/homeserver.py -c homeserver.yaml
clokep marked this conversation as resolved.
Show resolved Hide resolved
```

# 5. Get in touch.

Expand Down