mirror of
https://github.com/go-i2p/dendrite-unofficial.git
synced 2025-06-07 10:01:47 -04:00
25 lines
963 B
Bash
Executable File
25 lines
963 B
Bash
Executable File
#! /usr/bin/env sh
|
|
|
|
git clone --depth=1 https://github.com/element-hq/dendrite
|
|
cd dendrite
|
|
git fetch --unshallow
|
|
go build -o bin/ ./cmd/...
|
|
go build -o bin/ ./contrib/...
|
|
|
|
# Generate a Matrix signing key for federation (required)
|
|
#./bin/generate-keys --private-key matrix_key.pem
|
|
|
|
# Generate a self-signed certificate (optional, but a valid TLS certificate is normally
|
|
# needed for Matrix federation/clients to work properly!)
|
|
#./bin/generate-keys --tls-cert server.crt --tls-key server.key
|
|
|
|
# Copy and modify the config file - you'll need to set a server name and paths to the keys
|
|
# at the very least, along with setting up the database connection strings.
|
|
#cp dendrite-sample.yaml dendrite.yaml
|
|
|
|
# Build and run the server:
|
|
./bin/dendrite-demo-i2p --config ../dendrite.yaml
|
|
|
|
# Create an user account (add -admin for an admin user).
|
|
# Specify the localpart only, e.g. 'alice' for '@alice:domain.com'
|
|
#./bin/create-account --config dendrite.yaml --username alice |