mirror of https://github.com/vector-im/riot-web
10 lines
182 B
Bash
10 lines
182 B
Bash
|
#!/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
|