2020-05-17 18:48:47 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo "cloning ..."
|
2020-05-19 07:50:39 +00:00
|
|
|
git pull origin master
|
2020-05-17 18:48:47 +00:00
|
|
|
|
|
|
|
echo "collecting static files ..."
|
|
|
|
cd /home/willipink/coinmanager/coinmanager
|
2020-05-19 07:50:39 +00:00
|
|
|
pipenv run python manage.py collectstatic --settings coinmanager.production_settings --no-input
|
2020-05-17 18:48:47 +00:00
|
|
|
|
|
|
|
echo "restarting apache ..."
|
2020-05-19 07:50:39 +00:00
|
|
|
sudo systemctl restart apache2
|