-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.models.sample.json
60 lines (60 loc) · 1.02 KB
/
config.models.sample.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"authModel": {
"version": 0,
"type": "redis",
"options": {
"port": 6379
}
},
"tokenModel": {
"version": 0,
"type": "redis",
"options": {
"port": 6379
}
},
"rateModel": {
"version": 0,
"type": "redis",
"options": {
"port": 6379
}
},
"dataModel": {
"version": 0,
"type": "redis",
"options": {
"port": 6379
},
"switches": {
"storeHTML": true,
"storeEntity": true
},
"config": {
"text": {
"uri_template_length": {
"post_id": 9,
"message_id": 12
}
},
"user": {
"annotation_max_bytes": 8192,
"text_max_length": 256
},
"file": {
"annotation_max_bytes": 8192
},
"post": {
"annotation_max_bytes": 8192,
"text_max_length": 256
},
"message": {
"annotation_max_bytes": 8192,
"text_max_length": 2048
},
"channel": {
"annotation_max_bytes": 8192
}
}
}
}