Skip to main content

Common methods to help create fabric deplopment scripts for django

Project description

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 djangofab.api import *
from django.conf import settings
from djangofab.vcs.git import update_remote, update_local, push, commit, add
env.capture_default = False

# apply the settings from fab.cfg default section
# sets DJANGO_SETTINGS which allows access to django.conf.settings values
apply_settings()

#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()

def test():
    print "website using database %s " % (settings.DATABASE_NAME,)

Requries fabric>=0.9 http://git.fabfile.org/cgit.cgi/fabric/snapshot/fabric-0.9b1.tar.gz

See fabric docs http://docs.fabfile.org/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-fab-1.0.3.tar.gz (20.0 kB view details)

Uploaded Source

File details

Details for the file django-fab-1.0.3.tar.gz.

File metadata

  • Download URL: django-fab-1.0.3.tar.gz
  • Upload date:
  • Size: 20.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django-fab-1.0.3.tar.gz
Algorithm Hash digest
SHA256 0bc30252aad675902519ab59b17c7e72c533c2b1a2b47506013fb992906f3c83
MD5 1291f2e86a9fe4fccd46c940dd36079d
BLAKE2b-256 98f96d58de40df63d313fd69339703b2d01f5a4e42c1d549c58ca8005479b676

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page