X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/cf166fd1eaaeddfa266aa46b6442ad2315095c2c..888f3e984aed72d6ba1c8beff8ad88fea40265e8:/fabfile.py diff --git a/fabfile.py b/fabfile.py index 1cf26790..6304aaea 100644 --- a/fabfile.py +++ b/fabfile.py @@ -1,11 +1,21 @@ -from fabric.api import run, env, cd +from __future__ import with_statement +from fabric.api import * + def staging(): - '''Add staging server to hosts''' - env.hosts += ['platforma@stigma.nowoczesnapolska.org.pl:2222'] + '''Use staging server''' + env.hosts = ['platforma@stigma.nowoczesnapolska.org.pl:2222'] + env.project_dir = '/home/platforma/platforma' def deploy(): '''Deploy server''' - with cd('platforma'): + require('project_dir', provided_by=['staging']) + with cd(env.project_dir): run('git pull') run('./project/manage.py syncdb') + restart_server() + +def restart_server(): + with cd(env.project_dir): + run('touch project/dispatch.wsgi') +