benchmark-scoreboard/README.md

40 lines
730 B
Markdown
Raw Normal View History

2017-04-11 20:26:09 +00:00
# scoreboard-benchmark
2017-04-11 20:23:47 +00:00
This is a simple web app used for an university projects.
It should provide a simple score board display
for some benchmarking data which is gathered from another application.
2017-04-13 14:01:38 +00:00
## Installing
First, rename the config.lock.py to config.py
2017-04-13 14:02:26 +00:00
and update the file to match your configuration settings.
2017-04-13 14:01:38 +00:00
Then run:
```
python3 setup.py install
nohup python3 application.py &
```
2017-04-13 05:49:05 +00:00
## Posting data
For now, you can post data using curl.
```
2017-04-13 05:49:05 +00:00
curl -H "Content-Type: application/json" -X POST -d '{"text":"Hello Darkness","score": 5000}' http://localhost:5000/upload
```
2017-04-13 05:49:05 +00:00
2017-04-11 20:23:47 +00:00
## Requires:
2017-04-11 20:24:52 +00:00
2017-04-11 20:26:09 +00:00
* nosetests
* flask
* mysql
2017-04-11 20:23:47 +00:00
## Milestones:
1. Make simple view which displays benchmarks
2. Add user registration
3. Perfect