pyfedi/deploy.sh

12 lines
255 B
Bash
Raw Normal View History

2024-02-08 08:39:08 +13:00
#!/bin/bash
date > updated.txt
sudo systemctl stop celery.service
git pull
source venv/bin/activate
2024-03-18 16:37:45 +13:00
export FLASK_APP=pyfedi.py
2024-02-08 08:39:08 +13:00
flask db upgrade
2024-03-17 21:00:07 +13:00
pybabel compile -d app/translations
2024-02-08 08:39:08 +13:00
sudo systemctl start celery.service
sudo systemctl restart pyfedi.service