X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0dff76ecd927e5be83d8a6076f84c87c5dea4a4c..50840b4a75a3ffc806c462b6b9fb4f05303523b3:/fabfile.py diff --git a/fabfile.py b/fabfile.py index e37881a97..bdf0fad40 100644 --- a/fabfile.py +++ b/fabfile.py @@ -1,4 +1,8 @@ -from fnpdjango.deploy import * +from fnpdeploy import * +try: + from fabfile_local import * +except ImportError: + pass env.project_name = 'wolnelektury' @@ -9,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 = [ - DebianGunicorn('wolnelektury'), - 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'), ]