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