mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-29 22:10:57 +08:00
8 lines
210 B
Bash
8 lines
210 B
Bash
BASE_DIR=$(realpath $(dirname $0))
|
|
pushd $BASE_DIR > /dev/null
|
|
pushd riot-web/webapp/ > /dev/null
|
|
python -m SimpleHTTPServer 8080 > /dev/null 2>&1 &
|
|
PID=$!
|
|
popd > /dev/null
|
|
echo $PID > riot.pid
|
|
popd > /dev/null |