This repository has been archived by the owner on Mar 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpreferences.json.default
80 lines (80 loc) · 1.57 KB
/
preferences.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"port": 80,
"host": "0.0.0.0",
"secure": false,
"securePort": 443,
"trustStorePath": "",
"trustStorePassword": "",
"keyStorePath": "",
"keyStorePassword": "",
"maxGames": 400,
"maxUsers": 100,
"cacheEnabled": true,
"webContent": "./WebContent",
"pyxDbUrl": "jdbc:sqlite:pyx.sqlite",
"serverStatusPage": "http://example.com",
"chat": {
"registeredOnly": false,
"floodCount": 4,
"floodTime": 30
},
"serverDb": {
"url": "jdbc:sqlite:server.sqlite",
"username": "",
"password": ""
},
"emails": {
"senderEmail": "",
"senderName": "PYX-Reloaded",
"smtpServer": "",
"smtpPort": 587,
"smtpUsername": "",
"smtpPassword": "",
"verifyCallback": ""
},
"socials": {
"googleClientId": "",
"facebookAppId": "",
"facebookAppSecret": "",
"githubAppId": "",
"githubAppSecret": "",
"twitterAppId": "",
"twitterAppSecret": "",
"twitterCallback": ""
},
"game": {
"maxSkipsBeforeKick": 2,
"roundIntermission": 8,
"minBlackCards": 50,
"minWhiteCardsPerPlayer": 20,
"playTimeoutBase": 45,
"judgeTimeoutBase": 40,
"playTimeoutPerCard": 15,
"judgeTimeoutPerCard": 7,
"scoreLimit": {
"min": 4,
"default": 8,
"max": 69
},
"playerLimit": {
"min": 3,
"default": 10,
"max": 20
},
"spectatorLimit": {
"min": 0,
"default": 10,
"max": 20
},
"blankCardsLimit": {
"min": 0,
"default": 0,
"max": 30
},
"winBy": {
"min": 0,
"default": 0,
"max": 5
}
}
}