mattermore/deploy.sh

27 lines
583 B
Bash
Raw Normal View History

2019-02-13 19:54:18 +00:00
#!/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
if [[ config.py.example -nt config.py ]]; then
echo "Example config file is newer than the current config file. Plsfix."
exit 1
fi
2019-02-13 19:54:18 +00:00
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 .