Minor fix in OAI-PMH.
[wolnelektury.git] / fabfile.py
index e37881a..a7bc768 100644 (file)
@@ -1,4 +1,8 @@
 from fnpdjango.deploy import *
+try:
+    from fabfile_local import *
+except ImportError:
+    pass
 
 
 env.project_name = 'wolnelektury'
@@ -10,8 +14,8 @@ def production():
     env.user = 'lektury'
     env.app_path = '/srv/wolnelektury.pl'
     env.services = [
-        DebianGunicorn('wolnelektury'),
-        Supervisord('celery.wolnelektury:'),
+        Supervisord('wolnelektury'),
+        Supervisord('wolnelektury.celery'),
     ]