fabfile.py @ a5d036150749

Switch a header around in the DJ post.
author Steve Losh <steve@stevelosh.com>
date Fri, 25 Dec 2009 15:26:28 -0500
parents 32f7e97605e9
children b7e80769ceb9
from fabric.api import *

def clean():
    local('rm -rf ./deploy')

def regen():
    clean()
    local('hyde -g -s .')

def serve():
    local('hyde -w -s .')

def reserve():
    regen()
    serve()