audiobooks: no prev/next buttons when only one part
[wolnelektury.git] / fabfile.py
index 77652e1..bdf0fad 100644 (file)
@@ -1,4 +1,4 @@
-from fnpdjango.deploy import *
+from fnpdeploy import *
 try:
     from fabfile_local import *
 except ImportError:
@@ -13,9 +13,24 @@ def production():
     env.hosts = ['giewont.icm.edu.pl']
     env.user = 'lektury'
     env.app_path = '/srv/wolnelektury.pl'
+    env.django_root_path = 'src'
+    env.requirements_file = 'requirements/requirements.txt'
     env.services = [
-        Supervisord('wolnelektury.gunicorn'),
-        Supervisord('celery.wolnelektury:'),
+        Supervisord('wolnelektury'),
+        Supervisord('wolnelektury.celery'),
+    ]
+
+
+@task
+def beta():
+    env.hosts = ['giewont.icm.edu.pl']
+    env.user = 'lektury'
+    env.app_path = '/srv/wolnelektury.pl/beta'
+    env.ve = '/srv/wolnelektury.pl/ve'
+    env.django_root_path = 'src'
+    env.requirements_file = 'requirements/requirements.txt'
+    env.services = [
+        Supervisord('beta'),
     ]