https://github.com/matthewelse/scorer
A Quiz Scoring System
https://github.com/matthewelse/scorer
Last synced: 3 months ago
JSON representation
A Quiz Scoring System
- Host: GitHub
- URL: https://github.com/matthewelse/scorer
- Owner: matthewelse
- License: other
- Created: 2015-02-04T19:34:04.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-07T22:44:56.000Z (over 9 years ago)
- Last Synced: 2025-03-29T11:11:17.127Z (4 months ago)
- Language: Python
- Size: 125 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# scorer
A (reasonably flexible) scoring system for quiz nights, written in Django. Includes a big screen mode for showing on a projector etc.
Tested with Django 1.7
## Deploy Locally
```bash
$ git clone https://github.com/matthewelse/scorer
$ cd scorer
$ ./manage.py syncdb
$ ./manage.py runserver
```* Use http://localhost:8000/scoring/bigscreen for a projector.
* Use http://localhost:8000/scoring/controls for controlling the big screen
* Use http://localhost:8000/scoring/exportcsv to download a CSV of results for the current event
* Use the normal Django Admin for configuring things and setting scores.## Deploy to Heroku
```bash
# init project
heroku create
git push heroku master# create database etc
heroku run ./manage.py migrate --run-syncdb# see the wonderful masterpiece
heroku open
```