Skip to content

A generic django project that has the stuff we use most in it.

Notifications You must be signed in to change notification settings

blenderbox/django-skeleton

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Local Development

  1. Check out the repo:

    $ git clone git://github.com/blenderbox/{{ project_name|lower }}.git
    
  2. Create a virtual environment:

    $ mkvirtualenv {{ project_name|lower }} --distribute
    
  3. Enter your vitrtual environment, and install the packages:

    $ workon {{ project_name|lower }}
    $ pip install -r requirements.txt
    
  4. Grab some Sass

    $ gem install sass / sudo gem install sass
    
  5. Copy settings/local.py.example to local.py, and customize with your database info:

    $ cp source/settings/local.py.example source/settings/local.py
    
  6. Create your database, then run syncdb and fake migrations:

    $ python manage.py syncdb --all
    
  7. Startup your server:

    $ python manage.py runserver
    

About

A generic django project that has the stuff we use most in it.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.6%
  • Shell 0.4%