-# Servers
-def staging():
- """Use staging server"""
- env.hosts = ['stigma.nowoczesnapolska.org.pl:2222']
- env.user = 'zuber'
- env.path = '/var/services/wolnelektury'
- env.python = '/usr/bin/python'
- env.virtualenv = '/usr/bin/virtualenv'
- env.pip = '/usr/bin/pip'
-
-def production():
- """Use production server"""
- env.hosts = ['wolnelektury.pl:22123']
- env.user = 'fundacja'
- env.path = '/opt/lektury/wolnelektury'
- env.python = '/opt/cas/basevirtualenv/bin/python'
- env.virtualenv = '/opt/cas/basevirtualenv/bin/virtualenv'
- env.pip = '/opt/cas/basevirtualenv/bin/pip'
-
-
-# =========
-# = Tasks =
-# =========
-def test():
- "Run the test suite and bail out if it fails"
- require('hosts', 'path', provided_by=[staging, production])
- result = run('cd %(path)s/%(project_name)s; %(python)s manage.py test' % env)
-
-def setup():
- """
- Setup a fresh virtualenv as well as a few useful directories, then run
- a full deployment. virtualenv and pip should be already installed.
- """
- require('hosts', 'path', provided_by=[staging, production])
-
- run('mkdir -p %(path)s; cd %(path)s; %(virtualenv)s --no-site-packages .;' % env, pty=True)
- run('cd %(path)s; mkdir releases; mkdir shared; mkdir packages;' % env, pty=True)
- deploy()
-
-def deploy():
- """
- Deploy the latest version of the site to the servers,
- install any required third party modules,
- install the virtual host and then restart the webserver
- """
- require('hosts', 'path', provided_by=[staging, production])
-
- import time
- env.release = time.strftime('%Y-%m-%dT%H%M')