From cda38daafe58a438d629f00b3c17daf1bdedf3ba Mon Sep 17 00:00:00 2001 From: Jan Szejko Date: Thu, 28 Jan 2016 15:55:15 +0100 Subject: [PATCH] update counters on beta deploy (fix) --- fabfile.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/fabfile.py b/fabfile.py index 2badd97a8..5473b6dd4 100644 --- a/fabfile.py +++ b/fabfile.py @@ -1,7 +1,6 @@ +# -*- coding: utf-8 -*- from fnpdeploy import * -from catalogue.helpers import update_counters - try: from fabfile_local import * except ImportError: @@ -24,6 +23,13 @@ def production(): ] +def update_counters(): + print '>>> update counters' + require('app_path', 'project_name') + with cd(get_django_root_path('current')): + run('%(ve)s/bin/python manage.py update_counters' % env, pty=True) + + @task def beta(): env.hosts = ['giewont.icm.edu.pl'] -- 2.20.1