A simple training app for Daily Bruin trainees
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.git projectEnter the project and install its dependencies.
$ cd project
$ pip install -r requirements.txtInstall SQLite
$ sudo apt-get install sqlite3Then set up the test database
$ sqlite3 test
> .exitSync the database, and run our script to load in the data.
$ python manage.py syncdb
$ python manage.py load