fab conf fix
[wolnelektury.git] / fabfile.py
index 84605a2..30bce66 100644 (file)
@@ -29,7 +29,7 @@ def production():
     env.path = '/srv/wolnelektury.pl'
     env.python = '/usr/bin/python'
     env.virtualenv = '/usr/bin/virtualenv'
-    env.pip = '/usr/bin/pip'
+    env.pip = 've/bin/pip'
 
 # =========
 # = Tasks =
@@ -70,6 +70,7 @@ def deploy():
     copy_localsettings()
     symlink_current_release()
     migrate()
+    collectstatic()
     restart_webserver()
 
 def deploy_version(version):
@@ -160,6 +161,13 @@ def migrate():
         if env.use_south:
             run('../../../ve/bin/python manage.py migrate' % env, pty=True)
 
+def collectstatic():
+    """Collect static files"""
+    print '>>> collectstatic'
+    require('project_name', provided_by=[staging, production])
+    with cd('%(path)s/releases/current/%(project_name)s' % env):
+        run('../../../ve/bin/python manage.py collectstatic --noinput' % env, pty=True)
+
 def restart_webserver():
     "Restart the web server"
     print '>>> restart webserver'