X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0dff76ecd927e5be83d8a6076f84c87c5dea4a4c..6b9c5843b31661562ee76ee75a360219de0397a6:/fabfile.py?ds=sidebyside

diff --git a/fabfile.py b/fabfile.py
index e37881a97..a7bc768ab 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -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'),
     ]