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
|
|
|
|
|
2014-10-20 19:35:39 +02:00
|
|
|
# Check the --no-rate-limit param
|
|
|
|
PARAMS=""
|
|
|
|
if [ $# -eq 1 ]; then
|
|
|
|
if [ $1 = "--no-rate-limit" ]; then
|
|
|
|
PARAMS="--rc-messages-per-second 1000 --rc-message-burst-count 1000"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2015-04-30 05:24:44 +02:00
|
|
|
export PYTHONPATH=$(readlink -f $(pwd))
|
|
|
|
|
|
|
|
|
|
|
|
echo $PYTHONPATH
|
|
|
|
|
2014-08-26 14:43:55 +02:00
|
|
|
for port in 8080 8081 8082; do
|
2014-08-12 16:10:52 +02:00
|
|
|
echo "Starting server on port $port... "
|
|
|
|
|
2014-09-02 11:51:42 +02:00
|
|
|
https_port=$((port + 400))
|
2015-04-30 05:24:44 +02:00
|
|
|
mkdir -p demo/$port
|
2015-04-30 17:52:57 +02:00
|
|
|
pushd demo/$port
|
2014-09-02 11:51:42 +02:00
|
|
|
|
2015-04-30 17:04:02 +02:00
|
|
|
#rm $DIR/etc/$port.config
|
2014-08-12 16:10:52 +02:00
|
|
|
python -m synapse.app.homeserver \
|
2015-04-30 14:48:15 +02:00
|
|
|
--generate-config \
|
2015-05-08 17:32:18 +02:00
|
|
|
--enable_registration \
|
2015-04-30 14:48:15 +02:00
|
|
|
-H "localhost:$https_port" \
|
2015-04-30 05:24:44 +02:00
|
|
|
--config-path "$DIR/etc/$port.config" \
|
2014-09-01 16:51:15 +02:00
|
|
|
|
|
|
|
python -m synapse.app.homeserver \
|
2015-04-30 05:24:44 +02:00
|
|
|
--config-path "$DIR/etc/$port.config" \
|
|
|
|
-D \
|
2014-09-01 16:51:15 +02:00
|
|
|
-vv \
|
|
|
|
|
2015-04-30 17:52:57 +02:00
|
|
|
popd
|
2014-08-12 16:10:52 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
cd "$CWD"
|