Add deploy script

This commit is contained in:
Rien Maertens 2019-02-13 20:54:18 +01:00
parent 239deb6173
commit 74e3202a26
No known key found for this signature in database
GPG key ID: 10C6D8C91DE58E4A

21
deploy.sh Normal file
View file

@ -0,0 +1,21 @@
#!/bin/sh
set -eo pipefail
if [ git status --porcelain=2 -uno | grep '' ]; then
echo "You have unstaged changes."
echo "This shouldn't happen in production."
echo "Plsfix. Dank."
exit 1
fi
echo "Pulling from remote."
git pull
echo "Updating dependencies."
~/env/bin/pip install requirements.txt
echo "Migrating database."
~/env/bin/flask db upgrade
echo "Restarting server using passenger."
passenger-config restart-app .