2014-08-12 10:10:52 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
DIR="$( cd "$( dirname "$0" )" && pwd )"
|
|
|
|
|
|
|
|
CWD=$(pwd)
|
|
|
|
|
|
|
|
cd "$DIR/.."
|
|
|
|
|
2014-09-01 10:51:15 -04:00
|
|
|
mkdir -p demo/etc
|
|
|
|
|
2014-08-26 08:43:55 -04:00
|
|
|
for port in 8080 8081 8082; do
|
2014-08-12 10:10:52 -04:00
|
|
|
echo "Starting server on port $port... "
|
|
|
|
|
2014-09-02 05:51:42 -04:00
|
|
|
https_port=$((port + 400))
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
python -m synapse.app.homeserver \
|
2014-09-01 10:51:15 -04:00
|
|
|
--generate-config \
|
|
|
|
--config-path "demo/etc/$port.config" \
|
2014-09-02 05:51:42 -04:00
|
|
|
-p "$https_port" \
|
|
|
|
--unsecure-port "$port" \
|
|
|
|
-H "localhost:$https_port" \
|
2014-08-12 10:10:52 -04:00
|
|
|
-f "$DIR/$port.log" \
|
|
|
|
-d "$DIR/$port.db" \
|
2014-08-26 08:43:55 -04:00
|
|
|
-D --pid-file "$DIR/$port.pid" \
|
2014-09-01 10:51:15 -04: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 10:10:52 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
echo "Starting webclient on port 8000..."
|
|
|
|
python "demo/webserver.py" -p 8000 -P "$DIR/webserver.pid" "webclient"
|
|
|
|
|
|
|
|
cd "$CWD"
|