Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matthewelse/scorer
A Quiz Scoring System
https://github.com/matthewelse/scorer
Last synced: about 1 month 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 (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-07T22:44:56.000Z (almost 9 years ago)
- Last Synced: 2023-08-02T14:56:17.611Z (over 1 year ago)
- Language: Python
- Size: 125 KB
- Stars: 3
- Watchers: 4
- 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
```