mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 11:26:56 -08:00
9 lines
192 B
Bash
Executable file
9 lines
192 B
Bash
Executable file
#!/bin/bash
|
|
date > updated.txt
|
|
|
|
sudo systemctl stop celery.service
|
|
git pull
|
|
source venv/bin/activate
|
|
flask db upgrade
|
|
sudo systemctl start celery.service
|
|
sudo systemctl restart pyfedi.service
|