bigbluebutton-Github/bbb-export-annotations/run-dev.sh

18 lines
279 B
Bash
Raw Normal View History

#!/usr/bin/env bash
cd "$(dirname "$0")"
for var in "$@"
do
if [[ $var == --reset ]] ; then
echo "Performing a full reset..."
rm -rf node_modules
fi
done
if [ ! -d ./node_modules ] ; then
npm install
fi
sudo systemctl stop bbb-export-annotations
npm start