X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6d7b11e4a01b2314c0527d94d91f3159c0bd34ce..c3abe4b834586c564bf87e76902e9344e6ecddfa:/fabfile.py?ds=inline diff --git a/fabfile.py b/fabfile.py index e37881a97..77652e1ee 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,7 +14,7 @@ def production(): env.user = 'lektury' env.app_path = '/srv/wolnelektury.pl' env.services = [ - DebianGunicorn('wolnelektury'), + Supervisord('wolnelektury.gunicorn'), Supervisord('celery.wolnelektury:'), ]