Please consult the technical documentation on how to run the code.

An abridged version:

- NEED: Sqlite, Python, Django installed on your system (1.4.2) (the DEB is available on most linux repos)
- Install the above components on your system
- Run the following command in the home directory of the project, containing the manage.py file: 'python manage.py runserver'
- A window will appear with a URL to a website
- The website is hosted on a built-in django development server to test the website
- To process trades, run 'python manage.py ticket' from the CLI

- To create an 'Admin' user, run the following command: 'python manage.py createsuperuser'
- To create users, use the 'register' button at the top of the home page
- No users are created by default

Pertinent Files:
- manage.py - to run code
- all other files broken into directories of what they do (e.g. league in league/ , etc.)
- within each folder, you will find 'views.py' to generate views, 'urls.py' to link a url to a view, and 'models.py' to define models
- each specific file is best documented in the technical documentation, associated with demo #2