view fabfile.py @ 184:6508aef37131

Update home page with Ancient Winds quotes.
author Brian Neal <bgneal@gmail.com>
date Sat, 16 Jan 2016 15:01:25 -0600
parents 8a93b1f838f9
children
line wrap: on
line source
from fabric.api import cd, run

PYTHON = '/svr/django-sites/madeira/bin/python'
WC_DIR = '/svr/django-sites/madeira/madeira'
PROJ_DIR = WC_DIR

def update():
    """
    Runs hg pull --update to pull changes and update to them.

    """
    with cd(PROJ_DIR):
        run('hg pull --update')


def collectstatic():
    """
    Runs the staticfiles collectstatic command to deploy static assets.

    """
    cmd = ('%s manage.py collectstatic '
        '--settings=madeira.settings.production --noinput') % PYTHON

    with cd(PROJ_DIR):
        run(cmd)


def cleanup():
    """
    Runs any/all cleanup-type management commands.

    """
    cmd = '%s manage.py clearsessions --settings=madeira.settings.production' % PYTHON

    with cd(PROJ_DIR):
        run(cmd)


def touch():
    """
    Touches the wsgi file to reload the Python code.

    """
    with cd(PROJ_DIR):
        run('touch madeira/apache/madeira.wsgi')