Metadata-Version: 1.0
Name: django-fab
Version: 1.0.2
Summary: Common methods to help create fabric deplopment scripts for django
Home-page: http://github.com/hbussell/django-fab
Author: Harley Bussell
Author-email: modmac@gmail.com
License: GPL
Description: ==========
        django-fab
        ==========
        
        Common methods to help create fabric deplopment scripts for django
        
        The idea is to allow you to use a fabfile.py that has just the unique things for your specific project, while taking advantage of common functions for version control and django tasks.
        
        You can also move configuration out of the fabfile.py into ini style configuration files.
        
        
        Installation ::
        
        sudo easy_install django-fab
        sudo easy_install http://git.fabfile.org/cgit.cgi/fabric/snapshot/fabric-0.9b1.tar.gz
        
        git example fabfile.py ::
        
        from __future__ import with_statement
        from fabric.api import *
        from fabric.context_managers import *
        from django.conf import settings
        from djangofab.vcs.git import update_remote, update_local, push, commit, add
        from djangofab.decorator import user_settings
        from djangofab.util import local as local
        from djangofab.django import get_remote_db, put_local_db, change_ownership, touch_wsgi
        env.capture_default = False
        
        #use the default section of fab.cfg
        @user_settings()
        def prod():
        "Production settings"
        env.hosts = ['server1']
        env.path = '%(prod_path)s'
        env.giturl = '%(giturl)s'
        env.site_user = 'owner'
        env.site_group = 'group'
        
        @user_settings()
        def dev():
        "Development settings"
        env.hosts = ['server1']
        env.path = '%(dev_path)s'
        env.giturl = '%(giturl)s'
        env.site_user = 'owner'
        env.site_group = 'group'
        
        #use the local section
        @user_settings('fab.cfg','local')
        def localhost():
        "Local settings"
        env.path = '%(dev_path)s'
        env.giturl = '%(giturl)s'
        
        def deploy():
        "Push local changes and update checkout on the remote host"
        push()
        update_remote() # reset and pull on the remote server
        #remote_export()
        change_ownership()
        touch_wsgi()
        
        
        Requries fabric>=0.9
        http://git.fabfile.org/cgit.cgi/fabric/snapshot/fabric-0.9b1.tar.gz
        
        See fabric docs
        http://docs.fabfile.org/
        
Keywords: django fabric deployment
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Framework :: Django
Classifier: Environment :: Console
Classifier: Topic :: Software Development
Classifier: Topic :: System :: Software Distribution
