Built a PostgreSQL relational database scheme to store the results of a game tournament. Also provided a number of queries to efficiently report the results of the tournament and determine the winner.
- VirtualBox installation (https://www.virtualbox.org/wiki/Downloads)
- Vagrant installation (https://www.vagrantup.com/downloads)
- Clone of Vagrant VM for ud197 (git clone http://github.com/udacity/fullstack-nanodegree-vm fullstack)
- To run the test suite (exercising all of the Python functions for the tournament database):
- PostgreSQL
- and Python
From a GitHub shell:
$ cd fullstack/vagrant
$ vagrant up (you can turn off the VM with 'vagrant halt')
$ vagrant ssh (from here you can type 'exit' to log out)
$ cd /vagrant/tournament
$ psql -f tournament.sql
$ python tournament_results.py
- Clone the project
- Run the sql queries from tournament.sql
- Run the following unit tests code:
$ python tournament_test.pyTadaa! You have the tournament working according to the unit tests