coinmanager/update

36 lines
703 B
Bash
Executable File

#!/bin/bash
set -e
web_user="www-data"
user="willipink"
path="/home/willipink/coinmanager"
if [[ "$USER" != "$user" ]]; then
echo "You must be '$user' to run this file."
exit 1
fi
cd $path/coinmanager
echo -n "fetching "
git pull -q origin master >/dev/null
echo "..."
echo -n "collecting "
pipenv run python manage.py collectstatic --settings coinmanager.production_settings --no-input >/dev/null
echo "..."
echo -n "bumping "
version=$(date +"%y%m%d")
sed -i "s/[0-9]\{6\}/$version/g" coinc/templates/footer.html >/dev/null
echo "..."
echo -n "owning "
sudo chown -R $user:$web_user $path >/dev/null
echo "..."
echo -n "reloading "
sudo systemctl reload apache2 >/dev/null
echo "..."