0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-10 22:58:53 +02:00
synapse/demo/start.sh

36 lines
793 B
Bash
Raw Normal View History

2014-08-12 16:10:52 +02:00
#!/bin/bash
DIR="$( cd "$( dirname "$0" )" && pwd )"
CWD=$(pwd)
cd "$DIR/.."
2014-09-01 16:51:15 +02:00
mkdir -p demo/etc
for port in 8080 8081 8082; do
2014-08-12 16:10:52 +02:00
echo "Starting server on port $port... "
python -m synapse.app.homeserver \
2014-09-01 16:51:15 +02:00
--generate-config \
--config-path "demo/etc/$port.config" \
-H "localhost:$port" \
2014-08-12 16:10:52 +02:00
-p "$port" \
-H "localhost:$port" \
-f "$DIR/$port.log" \
-d "$DIR/$port.db" \
-D --pid-file "$DIR/$port.pid" \
2014-09-01 16:51:15 +02:00
--manhole $((port + 1000)) \
--tls-dh-params-path "demo/demo.tls.dh"
python -m synapse.app.homeserver \
--config-path "demo/etc/$port.config" \
-vv \
2014-08-12 16:10:52 +02:00
done
echo "Starting webclient on port 8000..."
python "demo/webserver.py" -p 8000 -P "$DIR/webserver.pid" "webclient"
cd "$CWD"