From: Ɓukasz Rekucki Date: Thu, 8 Oct 2009 12:48:38 +0000 (+0200) Subject: Merge branch 'master' of stigma:platforma X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/213b1af47b5f2c279db50304d318eb972289e3aa?hp=-c Merge branch 'master' of stigma:platforma --- 213b1af47b5f2c279db50304d318eb972289e3aa diff --combined fabfile.py index 404ec527,39b95822..5f9cd3fe --- a/fabfile.py +++ b/fabfile.py @@@ -1,13 -1,18 +1,20 @@@ +from __future__ import with_statement + from fabric.api import run, env, cd def staging(): '''Add staging server to hosts''' - env.hosts += ['platforma@stigma.nowoczesnapolska.org.pl:2222'] + env.hosts = ['platforma@stigma.nowoczesnapolska.org.pl:2222'] + env.project_dir = '/home/platforma/platforma' def deploy(): '''Deploy server''' - with cd('platforma'): + 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') +