X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/cda38daafe58a438d629f00b3c17daf1bdedf3ba..d38155ea08184f51939e9e75609d5916a810ea54:/fabfile.py diff --git a/fabfile.py b/fabfile.py index 5473b6dd4..a9e621d78 100644 --- a/fabfile.py +++ b/fabfile.py @@ -24,12 +24,19 @@ def production(): def update_counters(): - print '>>> update counters' + print '>>> updating 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) +def compile_messages(): + print '>>> compiling messages' + require('app_path', 'project_name') + with cd(get_django_root_path('current')): + run('source %(ve)s/bin/activate && python manage.py localepack -c' % env, pty=True) + + @task def beta(): env.hosts = ['giewont.icm.edu.pl'] @@ -40,6 +47,7 @@ def beta(): env.requirements_file = 'requirements/requirements.txt' env.pre_collectstatic = [ update_counters, + compile_messages, ] env.services = [ Supervisord('beta'),