-
Notifications
You must be signed in to change notification settings - Fork 4
/
params.json
44 lines (44 loc) · 983 Bytes
/
params.json
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
{
"new_db_canvas_size": 512,
"getcanvas_max_rate": 1.0,
"getcanvas_per_seconds": 10.0,
"setpixel_max_rate": 5.0,
"setpixel_per_seconds": 1.0,
"max_users_per_ip": 64,
"canvas_save_interval_sec": 60,
"users_save_interval_sec": 60,
"websocket_ping_interval_sec": 25,
"kick_inactive_after_sec": 3600,
"max_concurrent_users": 2048,
"administrators": [
{
"uuid": "<Desired userID here>",
"shutdown": true,
"announce": true,
"shadowban": true,
"banclick": true,
"cleanup": true
}
],
"listen_url": "ws://0.0.0.0:3001",
"dbase_file": "pixels.db",
"colors": [
[255, 255, 255, 3],
[221, 221, 221, 10],
[117, 117, 117, 11],
[ 0, 0, 0, 4],
[219, 0, 5, 0],
[252, 145, 199, 8],
[142, 87, 51, 12],
[189, 161, 113, 16],
[255, 153, 51, 7],
[255, 255, 0, 9],
[133, 222, 53, 1],
[ 24, 181, 4, 6],
[ 0, 0, 255, 2],
[ 13, 109, 187, 13],
[ 26, 203, 213, 5],
[195, 80, 222, 14],
[110, 0, 108, 15]
]
}