"""Deployment with Fabric.""" from fabric import task @task def doesitsparkjoy(c): """Release doesitsparkjoy.voicegardens.org.""" print('Releasing doesitsparkjoy.voicegardens.org ...') with c.cd('/var/www/doesitsparkjoy.voicegardens.org'): c.run('git pull origin master') c.run('sudo supervisorctl restart doesitsparkjoy') c.run('sudo systemctl restart nginx') print('Released <3') @task def cleanarchives(c): """Release doesitsparkjoy.voicegardens.org.""" print('Removing the doesitsparkjoy.voicegardens.org archives ...') with c.cd('/var/www/doesitsparkjoy.voicegardens.org'): c.run('rm -rf ./voicegardens/archive/*') print('Deleted <3')