hbbs.decentral1.se/fabfile.py
2020-04-04 20:45:54 +02:00

14 lines
380 B
Python

"""Deployment with Fabric."""
from fabric import task
@task
def hbbs(c):
"""Release hbbs.decentral1.se."""
with c.cd("/var/www/hbbs"):
c.run("sudo -su www-data git pull origin master")
c.run("sudo -su www-data .venv/bin/pip install -r requirements.txt")
c.run("sudo supervisorctl restart apps:hbbs")
c.run("sudo systemctl reload nginx")