Forge Home

django_bootstrap

Django app bootstrap served by Nginx/Apache and uwsgi.

10,461 downloads

8,840 latest version

3.3 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.1.4 (latest)
  • 0.1.3
  • 0.1.2
  • 0.1.1
  • 0.1.0
released Jun 4th 2015
This version is compatible with:

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'pbailey-django_bootstrap', '0.1.4'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add pbailey-django_bootstrap
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install pbailey-django_bootstrap --version 0.1.4

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

pbailey/django_bootstrap — version 0.1.4 Jun 4th 2015

Build Status

django_bootstrap

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with django_bootstrap
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

Overview

Django bootstrap module allows to manage your Django deploys.

Module Description

Django is a widely-used web framework, and this module allows to deploy your DJango code using wsgi budled with Apache or Nginx.

Nginx Django app structure:

.
└── myapp
├── manage.py
├── myapp
   ├── __init__.py
   ├── __init__.pyc
   ├── settings.py
   ├── settings.pyc
   ├── urls.py
   ├── urls.pyc
   ├── wsgi.py
   └── wsgi.pyc


Apache Django app structure:

.
└── myapp
├── manage.py
└── myapp
├── __init__.py
├── settings.py
├── urls.py
└── wsgi.py


Setup

WARNING: Pre existing Apache or Nginx configurations that are not managed by Puppet will be purged.

params.pp

$web_server        = 'nginx'
$app_name          = 'myapp'
$web_root          = '/var/www'

Setup Requirements OPTIONAL

Requires puppet stdlib module. https://github.com/puppetlabs/puppetlabs-stdlib

Usage

Limitations

Tested only on Ubuntu 14.04