pyfedi/deploy.sh

11 lines
216 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
flask translate compile
2024-02-07 11:39:08 -08:00
sudo systemctl start celery.service
sudo systemctl restart pyfedi.service