Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dnutiu/benchmark-scoreboard
A simple Flask app which displays a scoreboard for benchmark results.
https://github.com/dnutiu/benchmark-scoreboard
flask scoreboard-benchmark scorekeeper web-application
Last synced: 18 days ago
JSON representation
A simple Flask app which displays a scoreboard for benchmark results.
- Host: GitHub
- URL: https://github.com/dnutiu/benchmark-scoreboard
- Owner: dnutiu
- License: lgpl-3.0
- Created: 2017-04-11T20:23:35.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T19:55:26.000Z (over 1 year ago)
- Last Synced: 2023-08-27T19:28:39.790Z (over 1 year ago)
- Topics: flask, scoreboard-benchmark, scorekeeper, web-application
- Language: Python
- Homepage:
- Size: 129 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# scoreboard-benchmark
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/5898b8005f634dc48c611a3c3337d30e)](https://www.codacy.com/app/Metonimie/benchmark-scoreboard?utm_source=github.com&utm_medium=referral&utm_content=Metonimie/benchmark-scoreboard&utm_campaign=badger)
![Travis CI](https://travis-ci.com/Metonimie/benchmark-scoreboard.svg?token=A1YGCrBhxwT3nHmAHZ9Q&branch=master)
This is a simple web app that I've build for an university project.
It is supposed to retrieve and store results from outside and present them in a nice way.
The results are benchmarking tests that are run by the java application.You will need **Python 3.3+** to run this app.
Flask doesn't support Python 3.2 and some packages won't work with Python 2 but you may get it running with some tweaks.It should provide a simple score board display
for some benchmarking data which is gathered from another application.## Installing
To install and run the application, you must do the following:
Rename the config.lock.py to config.py, so you can safely modify the config.py and still have
config.lock.py as a template.
and update the file to match your configuration settings.Then run:
```bash
pip install -r requirements.txt
python application.py
```
You may set BSFLASK_ENV environment variable to production, development or testing.
### Running TestsIn the root directory, run the following command:
```bash
python -m unittest
```