element-web-Github/riot/start.sh

10 lines
243 B
Bash
Raw Normal View History

PORT=8080
echo "running riot on http://localhost:$PORT..."
BASE_DIR=$(readlink -f $(dirname $0))
2018-07-27 20:10:19 +08:00
cd $BASE_DIR/
2018-07-27 19:29:59 +08:00
pushd riot-web/webapp/ > /dev/null
python -m SimpleHTTPServer $PORT > /dev/null 2>&1 &
PID=$!
2018-07-27 19:29:59 +08:00
popd > /dev/null
echo $PID > riot.pid