-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json.default
executable file
·61 lines (55 loc) · 1.22 KB
/
config.json.default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"appname": "tinyChessServer",
"application": {
"start_if_enough_players_connected": true,
"play_single_game_only": false,
"disconnect_as_defeat": false,
"listen_to_stdin": true,
"save": {
"save_games": false,
"save_dir": "./games_log/",
"filename": null,
"meta": {
"event": "TU Darmstadt Bughouse Championship",
"site": "",
"round": "1"
}
}
},
"game": {
"variant": "bughouse",
"time": 300,
"backend_command": "python3 -u ./backend/chessBackend.py"
},
"httpServer": {
"enabled": true,
"port": 80,
"serve_webclient": true,
"static_dir": "./frontend"
},
"clients": {
"websocket": {
"enabled": true,
"path": "/websocketclient"
},
"cli": {
"enabled": true,
"engines": [
{
"position": 2,
"enabled": false,
"command": "/projects/myChessEngine/bin/engine -cli -xboard",
"cwd": "/projects/myChessEngine/",
"drop_move_prefix": false
}
]
}
},
"observers": {
"websocket": {
"enabled": true,
"pathBoardA": "/websocketObserverA",
"pathBoardB": "/websocketObserverB"
}
}
}