Django-start installs a script which allows the easy creation of Django 
projects and applications based the layout used at RED Interactive Agency.

Creating a project
==================
  
    pip install django-start
    django-start.py project example
    cd new-project
    
This will use the default project template, which includes 
[red-boilerplate](https://github.com/ff0000/red-boilerplate).

Running project
===============

    cd example/project
    ./manage.py server


Using a custom project template
===============================

If you would prefer to use a custom project template than the one included in
this application, create your custom project template directory and call the
command script like this:

    django-start.py --template-dir=/your/custom/template project new_example
