Bugfix for cover thumbnail generation.
[wolnelektury.git] / fabfile.py
index e37881a..77652e1 100644 (file)
@@ -1,4 +1,8 @@
 from fnpdjango.deploy import *
+try:
+    from fabfile_local import *
+except ImportError:
+    pass
 
 
 env.project_name = 'wolnelektury'
@@ -10,7 +14,7 @@ def production():
     env.user = 'lektury'
     env.app_path = '/srv/wolnelektury.pl'
     env.services = [
-        DebianGunicorn('wolnelektury'),
+        Supervisord('wolnelektury.gunicorn'),
         Supervisord('celery.wolnelektury:'),
     ]