mirror of
https://github.com/FAUSheppy/skillbird
synced 2025-12-06 06:51:34 +01:00
improve first start instructions
This commit is contained in:
@@ -1,6 +1,15 @@
|
|||||||
# What is "Skillbird" ?
|
# What is "Skillbird" ?
|
||||||
Skillbird is a framework around the python-Trueskill library, which can parse files of versus games to calculate a rating, matchmaking suggestions for future games or create predictions for the outcome of a game with certain team compositions.
|
Skillbird is a framework around the python-Trueskill library, which can parse files of versus games to calculate a rating, matchmaking suggestions for future games or create predictions for the outcome of a game with certain team compositions.
|
||||||
|
|
||||||
|
# Usage
|
||||||
|
|
||||||
|
apt install sqlite3 python3 python3-pip
|
||||||
|
python3 -m pip install -r req.txt
|
||||||
|
cd python/
|
||||||
|
mkdir data/
|
||||||
|
sqlite -init players.sqlite.init
|
||||||
|
./init -h
|
||||||
|
|
||||||
# Web Interface
|
# Web Interface
|
||||||
The [Open-web-leaderboard](https://github.com/FAUSheppy/open-web-leaderboard) can be used for visualization. If you leave all settings at default, it should work out of the box.
|
The [Open-web-leaderboard](https://github.com/FAUSheppy/open-web-leaderboard) can be used for visualization. If you leave all settings at default, it should work out of the box.
|
||||||
|
|
||||||
|
|||||||
8
python/players.sqlite.init
Normal file
8
python/players.sqlite.init
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
CREATE TABLE players(
|
||||||
|
id INTEGER,
|
||||||
|
name TEXT,
|
||||||
|
lastGame TEXT,
|
||||||
|
wins INTEGER,
|
||||||
|
mu INTEGER,
|
||||||
|
sigma INTEGER,
|
||||||
|
games INTEGER);
|
||||||
Reference in New Issue
Block a user