A simple training app for Daily Bruin trainees, using campaign contribution data from the 2012 California Propositions.
Set up a sandbox for your codebase using virtualenv.
$ virtualenv --no-site-packages trainingActivate the virtualenv.
$ cd training
$ . bin/activateClone down the training repo.
$ git clone git@github.com:anthonyjpesce/bruin-training-fall-2013.git repoEnter the project and install its dependencies.
$ cd repo
$ pip install -r requirements.txtInstall SQLite
$ sudo apt-get install sqlite3Then set up the test database
$ sqlite3 contribs.db
> .exitSync the database, and run our script to load in the data.
$ python manage.py syncdbTurn on the test server, and see what you have!
$ python manage.py runserverGo to http://localhost:8000/