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=677b94b27a586c1b81328fb0fd4346e202826b17 Merge branch 'master' of stigma:platforma --- diff --git a/fabfile.py b/fabfile.py index 404ec527..5f9cd3fe 100644 --- a/fabfile.py +++ b/fabfile.py @@ -4,10 +4,17 @@ 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') +