core/script/bootstrap_server

19 lines
320 B
Plaintext
Raw Normal View History

cd "$(dirname "$0")/.."
echo "Installing dependencies..."
2015-12-18 08:35:53 +00:00
python3 -m pip install -r requirements_all.txt
2015-12-17 17:17:24 +00:00
REQ_STATUS=$?
echo "Installing development dependencies.."
2015-12-28 00:57:16 +00:00
python3 -m pip install -r requirements_test.txt
2015-12-17 17:17:24 +00:00
REQ_DEV_STATUS=$?
if [ $REQ_DEV_STATUS -eq 0 ]
then
exit $REQ_STATUS
else
exit $REQ_DEV_STATUS
fi