element-web/synapse/install.sh

52 lines
1.6 KiB
Bash
Raw Normal View History

#!/bin/bash
set -e
2018-07-16 18:10:33 +02:00
# config
SYNAPSE_BRANCH=develop
2018-07-16 18:10:33 +02:00
INSTALLATION_NAME=consent
SERVER_DIR=installations/$INSTALLATION_NAME
CONFIG_TEMPLATE=consent
PORT=5005
2018-07-16 18:10:33 +02:00
# set current directory to script directory
BASE_DIR=$(cd $(dirname $0) && pwd)
if [ -d $BASE_DIR/$SERVER_DIR ]; then
echo "synapse is already installed"
exit
fi
2018-07-27 14:10:19 +02:00
cd $BASE_DIR
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
virtualenv -p python3 env
2018-07-16 18:10:33 +02:00
source env/bin/activate
# Having been bitten by pip SSL fail too many times, I don't trust the existing pip
# to be able to --upgrade itself, so grab a new one fresh from source.
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
2018-07-16 18:10:33 +02:00
pip install --upgrade setuptools
pip install matrix-synapse[all]
2018-07-16 18:10:33 +02:00
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/. ./
# Hashes used instead of slashes because we'll get a value back from $(pwd) that'll be
# full of un-escapable slashes.
2019-04-03 15:46:55 +02:00
# Use .bak suffix as using no suffix doesn't work macOS.
sed -i.bak "s#{{SYNAPSE_ROOT}}#$(pwd)/#g" homeserver.yaml
sed -i.bak "s#{{SYNAPSE_PORT}}#${PORT}#g" homeserver.yaml
sed -i.bak "s#{{FORM_SECRET}}#$(uuidgen)#g" homeserver.yaml
sed -i.bak "s#{{REGISTRATION_SHARED_SECRET}}#$(uuidgen)#g" homeserver.yaml
sed -i.bak "s#{{MACAROON_SECRET_KEY}}#$(uuidgen)#g" homeserver.yaml
rm *.bak