element-web/riot/start.sh

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