pyfedi/deploy.sh

11 lines
228 B
Bash
Raw Normal View History

2024-02-07 11:39:08 -08:00
#!/bin/bash
date > updated.txt
sudo systemctl stop celery.service
git pull
source venv/bin/activate
flask db upgrade
2024-03-17 01:00:07 -07:00
pybabel compile -d app/translations
2024-02-07 11:39:08 -08:00
sudo systemctl start celery.service
sudo systemctl restart pyfedi.service