core/script/bootstrap_server

19 lines
337 B
Plaintext
Executable File

cd "$(dirname "$0")/.."
echo "Installing dependencies..."
python3 -m pip install -r requirements_all.txt
REQ_STATUS=$?
echo "Installing development dependencies.."
python3 -m pip install flake8 pylint coveralls pytest pytest-cov
REQ_DEV_STATUS=$?
if [ $REQ_DEV_STATUS -eq 0 ]
then
exit $REQ_STATUS
else
exit $REQ_DEV_STATUS
fi