2018-07-27 15:08:14 +02:00
|
|
|
#!/bin/bash
|
2018-09-25 19:45:08 +02:00
|
|
|
set -e
|
2018-07-27 18:44:01 +02:00
|
|
|
|
2019-10-09 17:37:41 +02:00
|
|
|
BASE_DIR=$(cd $(dirname $0) && pwd)
|
|
|
|
pushd $BASE_DIR
|
2019-10-09 17:37:57 +02:00
|
|
|
|
|
|
|
if [ ! -d "synapse/installations" ] || [ ! -d "node_modules" ]; then
|
2019-10-18 14:33:32 +02:00
|
|
|
echo "Please first run $BASE_DIR/install.sh"
|
2019-10-09 17:37:57 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2020-12-03 14:56:27 +01:00
|
|
|
has_custom_app=$(node has-custom-app.js $@)
|
2019-10-09 16:59:00 +02:00
|
|
|
|
2020-12-03 14:56:27 +01:00
|
|
|
if [ ! -d "element/element-web" ] && [ $has_custom_app -ne "1" ]; then
|
|
|
|
echo "Please provide an instance of Element to test against by passing --element-url <url> or running $BASE_DIR/element/install.sh"
|
2019-10-09 17:37:57 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-07-27 18:44:01 +02:00
|
|
|
stop_servers() {
|
2020-12-03 14:56:27 +01:00
|
|
|
if [ $has_custom_app -ne "1" ]; then
|
|
|
|
./element/stop.sh
|
2019-10-09 16:59:00 +02:00
|
|
|
fi
|
|
|
|
./synapse/stop.sh
|
2018-07-27 18:44:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
handle_error() {
|
|
|
|
EXIT_CODE=$?
|
|
|
|
stop_servers
|
|
|
|
exit $EXIT_CODE
|
|
|
|
}
|
|
|
|
|
|
|
|
trap 'handle_error' ERR
|
|
|
|
|
2018-07-27 16:01:54 +02:00
|
|
|
./synapse/start.sh
|
2020-12-03 14:56:27 +01:00
|
|
|
if [ $has_custom_app -ne "1" ]; then
|
|
|
|
./element/start.sh
|
2019-10-09 16:59:00 +02:00
|
|
|
fi
|
2018-09-19 10:56:39 +02:00
|
|
|
node start.js $@
|
2018-07-27 18:44:01 +02:00
|
|
|
stop_servers
|