-
Check out the repo:
$ git clone git://github.com/blenderbox/{{ project_name|lower }}.git
-
Create a virtual environment:
$ mkvirtualenv {{ project_name|lower }} --distribute
-
Enter your vitrtual environment, and install the packages:
$ workon {{ project_name|lower }} $ pip install -r requirements.txt
-
Grab some Sass
$ gem install sass / sudo gem install sass
-
Copy settings/local.py.example to local.py, and customize with your database info:
$ cp source/settings/local.py.example source/settings/local.py
-
Create your database, then run syncdb and fake migrations:
$ python manage.py syncdb --all
-
Startup your server:
$ python manage.py runserver