X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4b86e623b0ff7a5a53bdb29df06eab039ebe4e1e..8495246162e34c6213633cfdc9a784c636bf75ca:/fabfile.py?ds=sidebyside diff --git a/fabfile.py b/fabfile.py deleted file mode 100644 index 11442c7ea..000000000 --- a/fabfile.py +++ /dev/null @@ -1,75 +0,0 @@ -# -*- coding: utf-8 -*- -from fnpdeploy import * - -try: - from fabfile_local import * -except ImportError: - pass - - -env.project_name = 'wolnelektury' - - -class ManageTask(Task): - def __init__(self, name, params='', **kwargs): - super(ManageTask, self).__init__(**kwargs) - self.name = name - self.params = params - - def run(self): - require('app_path', 'project_name') - with cd(get_django_root_path('current')): - run('source %(ve)s/bin/activate && python manage.py %(task)s %(params)s' % { - 've': env.ve, - 'task': self.name, - 'params': self.params, - }, pty=True) - - -class Memcached(Service): - def run(self): - print '>>> memcached: restart' - sudo('/etc/init.d/memcached restart', shell=False) - - -@task -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.pre_collectstatic = [ - ManageTask('update_counters'), - ] - env.services = [ - Supervisord('wolnelektury'), - Supervisord('wolnelektury.celery'), - Memcached(), - ] - - -@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.pre_collectstatic = [ - ManageTask('update_counters'), - ] - env.services = [ - Supervisord('beta'), - ] - - -@task -def staging(): - env.hosts = ['san.nowoczesnapolska.org.pl:2223'] - env.user = 'staging' - env.app_path = '/home/staging/wolnelektury.pl' - env.services = [ - DebianGunicorn('wolnelektury'), - ]