view fabfile.py @ 91:c15b50f1ebfc

For Django 1.5: Don't include old photologue URLs. They still use the old function style generic views, which are missing from Django 1.5. Since I don't use these URLs, and at some point they broke in the admin, just get rid of them for now.
author Brian Neal <bgneal@gmail.com>
date Tue, 27 Aug 2013 20:54:38 -0500
parents d2e32fa2dc99
children 55ceb9824443
line wrap: on
line source
from fabric.api import cd, run

PYTHON = '/home/var/django-sites/virtualenvs/madeira/bin/python'
WC_DIR = '/home/var/django-sites/virtualenvs/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 the cleanup management command.

    """
    cmd = '%s manage.py cleanup --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')