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-10-20 13:35:39 -04: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-29 23:24:44 -04:00
|
|
|
export PYTHONPATH=$(readlink -f $(pwd))
|
|
|
|
|
|
|
|
|
|
|
|
echo $PYTHONPATH
|
|
|
|
|
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))
|
2015-04-29 23:24:44 -04:00
|
|
|
mkdir -p demo/$port
|
2015-04-30 11:52:57 -04:00
|
|
|
pushd demo/$port
|
2014-09-02 05:51:42 -04:00
|
|
|
|
2015-04-30 11:04:02 -04:00
|
|
|
#rm $DIR/etc/$port.config
|
2014-08-12 10:10:52 -04:00
|
|
|
python -m synapse.app.homeserver \
|
2015-04-30 08:48:15 -04:00
|
|
|
--generate-config \
|
2015-05-08 11:32:18 -04:00
|
|
|
--enable_registration \
|
2015-04-30 08:48:15 -04:00
|
|
|
-H "localhost:$https_port" \
|
2015-04-29 23:24:44 -04:00
|
|
|
--config-path "$DIR/etc/$port.config" \
|
2014-09-01 10:51:15 -04:00
|
|
|
|
|
|
|
python -m synapse.app.homeserver \
|
2015-04-29 23:24:44 -04:00
|
|
|
--config-path "$DIR/etc/$port.config" \
|
|
|
|
-D \
|
2014-09-01 10:51:15 -04:00
|
|
|
-vv \
|
|
|
|
|
2015-04-30 11:52:57 -04:00
|
|
|
popd
|
2014-08-12 10:10:52 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
cd "$CWD"
|