mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
6c69f3e3b6
* Ensure a useful logfile gets recorded for synapse startup failures * Update synapse config to stop complaining about key servers * Add flag to turn on registrations again From https://github.com/matrix-org/synapse/pull/12091
9 lines
182 B
Bash
Executable file
9 lines
182 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
BASE_DIR=$(cd $(dirname $0) && pwd)
|
|
cd $BASE_DIR
|
|
cd installations/consent/env/bin/
|
|
source activate
|
|
echo "Synapse log file at $LOGFILE"
|
|
./synctl start 2> $LOGFILE
|