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