2018-07-27 15:08:14 +02:00
|
|
|
#!/bin/bash
|
2018-07-16 18:10:33 +02:00
|
|
|
# config
|
|
|
|
SYNAPSE_BRANCH=master
|
|
|
|
INSTALLATION_NAME=consent
|
|
|
|
SERVER_DIR=installations/$INSTALLATION_NAME
|
|
|
|
CONFIG_TEMPLATE=consent
|
2018-08-07 18:28:18 +02:00
|
|
|
PORT=5005
|
2018-07-16 18:10:33 +02:00
|
|
|
# set current directory to script directory
|
2018-07-27 15:04:04 +02:00
|
|
|
BASE_DIR=$(readlink -f $(dirname $0))
|
2018-07-27 14:00:01 +02:00
|
|
|
|
2018-07-27 15:08:14 +02:00
|
|
|
if [ -d $BASE_DIR/$SERVER_DIR ]; then
|
2018-08-14 12:53:16 +02:00
|
|
|
echo "synapse is already installed"
|
|
|
|
exit
|
2018-07-27 14:00:01 +02:00
|
|
|
fi
|
|
|
|
|
2018-07-27 14:10:19 +02:00
|
|
|
cd $BASE_DIR
|
2018-07-27 14:00:01 +02:00
|
|
|
|
2018-07-16 18:10:33 +02:00
|
|
|
mkdir -p installations/
|
|
|
|
curl https://codeload.github.com/matrix-org/synapse/zip/$SYNAPSE_BRANCH --output synapse.zip
|
2018-07-30 13:40:23 +02:00
|
|
|
unzip -q synapse.zip
|
2018-07-16 18:10:33 +02:00
|
|
|
mv synapse-$SYNAPSE_BRANCH $SERVER_DIR
|
2018-07-27 14:10:19 +02:00
|
|
|
cd $SERVER_DIR
|
2018-07-16 18:10:33 +02:00
|
|
|
virtualenv -p python2.7 env
|
|
|
|
source env/bin/activate
|
|
|
|
pip install --upgrade pip
|
|
|
|
pip install --upgrade setuptools
|
|
|
|
pip install .
|
|
|
|
python -m synapse.app.homeserver \
|
|
|
|
--server-name localhost \
|
|
|
|
--config-path homeserver.yaml \
|
|
|
|
--generate-config \
|
|
|
|
--report-stats=no
|
|
|
|
# apply configuration
|
|
|
|
cp -r $BASE_DIR/config-templates/$CONFIG_TEMPLATE/. ./
|
|
|
|
sed -i "s#{{SYNAPSE_ROOT}}#$(pwd)/#g" homeserver.yaml
|
2018-08-07 18:28:18 +02:00
|
|
|
sed -i "s#{{SYNAPSE_PORT}}#${PORT}#g" homeserver.yaml
|
2018-07-16 18:10:33 +02:00
|
|
|
sed -i "s#{{FORM_SECRET}}#$(uuidgen)#g" homeserver.yaml
|
2018-09-12 16:48:40 +02:00
|
|
|
sed -i "s#{{REGISTRATION_SHARED_SECRET}}#$(uuidgen)#g" homeserver.yaml
|
2018-07-16 18:10:33 +02:00
|
|
|
sed -i "s#{{MACAROON_SECRET_KEY}}#$(uuidgen)#g" homeserver.yaml
|