from fnpdjango.deploy import *
+try:
+ from fabfile_local import *
+except ImportError:
+ pass
env.project_name = 'wolnelektury'
env.user = 'lektury'
env.app_path = '/srv/wolnelektury.pl'
env.services = [
- DebianGunicorn('wolnelektury'),
- Supervisord('celery.wolnelektury:'),
+ Supervisord('wolnelektury'),
+ Supervisord('wolnelektury.celery'),
]