X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0950e2b491433f1b54a0c16563a885394d9f83d6..73157de9f8d5bda80f9623e77f36bbac11c343ff:/fabfile.py diff --git a/fabfile.py b/fabfile.py index a7bc768ab..bdf0fad40 100644 --- a/fabfile.py +++ b/fabfile.py @@ -1,4 +1,4 @@ -from fnpdjango.deploy import * +from fnpdeploy import * try: from fabfile_local import * except ImportError: @@ -13,12 +13,27 @@ 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'), 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'), + ] + + @task def staging(): env.hosts = ['san.nowoczesnapolska.org.pl:2223']