summary refs log tree commit diff
path: root/demo/start.sh
blob: 56a134434465b7db965e09cc3c7dda0bd6f26e20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash

DIR="$( cd "$( dirname "$0" )" && pwd )"

CWD=$(pwd)

cd "$DIR/.."

mkdir -p demo/etc

for port in 8080 8081 8082; do
    echo "Starting server on port $port... "

    python -m synapse.app.homeserver \
        --generate-config \
        --config-path "demo/etc/$port.config" \
        -H "localhost:$port" \
        -p "$port" \
        -H "localhost:$port" \
        -f "$DIR/$port.log" \
        -d "$DIR/$port.db" \
        -D --pid-file "$DIR/$port.pid" \
        --manhole $((port + 1000)) \
        --tls-dh-params-path "demo/demo.tls.dh"

    python -m synapse.app.homeserver \
        --config-path "demo/etc/$port.config" \
        -vv \

done

echo "Starting webclient on port 8000..."
python "demo/webserver.py" -p 8000 -P "$DIR/webserver.pid" "webclient"

cd "$CWD"