Skip to content

anthonyjpesce/bruin-training

Repository files navigation

bruin-training

A simple training app for Daily Bruin trainees

Initial setup:

Set up a sandbox for your codebase using virtualenv.

$ virtualenv --no-site-packages training

Activate the virtualenv.

$ cd training
$ . bin/activate

Clone down the training repo.

$ git clone git://github.com/anthonyjpesce/bruin-training.git project

Enter the project and install its dependencies.

$ cd project
$ pip install -r requirements.txt

Installing SQLite

Install SQLite

$ sudo apt-get install sqlite3

Then set up the test database

$ sqlite3 test
> .exit

Starting up the Django project

Sync the database, and run our script to load in the data.

$ python manage.py syncdb
$ python manage.py load

About

A simple training app for Daily Bruin trainees

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published