pyfedi/deploy.sh

12 lines
255 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
2024-03-17 20:37:45 -07:00
export FLASK_APP=pyfedi.py
2024-02-07 11:39:08 -08:00
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