CostHive/boot.sh
Lunaresk b21284f640 minor: add payment
Admins can now add payments for their users.
2023-05-28 09:07:54 +02:00

19 lines
447 B
Bash

#!/bin/bash
echo "Activating venv"
source venv/bin/activate
cd backend
echo "Upgrading database"
for i in {0..5}
do
flask db upgrade 2be4d1ae5493-1
if [[ "$?" == "0" ]]; then
break
elif [ "$i" -eq 5 ]; then
echo Deployment failed, exiting...
exit 1
fi
echo Deploy command failed, retrying in 5 secs...
sleep 5
done
flask db upgrade
exec gunicorn -b :5000 --access-logfile - --error-logfile - run:app