-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json.template
138 lines (118 loc) · 2.34 KB
/
config.json.template
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"common":
{
"client_id": "<Client ID>",
"client_secret": "<Client Secret>",
"access_token": "<Access Token>",
"database_path": "chat.db"
},
"bot":
{
"channels": ["<Username 1>", "<Username 2>"],
"max_write_retries": 5,
"write_retry_wait_time": 1
},
"highlight":
{
"channel_name": "<Username>",
"vod_criteria": "<date or notes>",
"begin_date": "<YYYY-MM-DD>",
"num_days": 7,
"notes": "<Notes>",
"get_vods_from_api": true,
"vod_type": "archive",
"use_youtube_urls": false,
"bucket_length": 20,
"message_threshold": 15,
"top_bucket_distance_threshold": 3,
"top_url_delay": 15,
"plot_categories": true,
"plot_threshold": false,
"show_word_list": false,
"categories":
[
{
"name": "Good Bit",
"words": ["+2"],
"top": 0,
"color": "#32cd32",
"skip_summary": true
},
{
"name": "Bad Bit",
"words": ["-2"],
"top": 0,
"color": "#dc143c",
"skip_summary": true
},
{
"name": "Funny",
"words": ["LUL", "LULW", "OMEGALUL", "KEKW", "regex:LMF?AO+", "regex:LO+L"],
"top": 10,
"color": "#ff7f50"
},
{
"name": "Pog",
"words": ["POG", "POGGERS", "PogChamp"],
"top": 1,
"color": "#00bfff"
},
{
"name": "Bonk",
"words": ["BOP", "Kreygasm"],
"top": 1,
"color": "#ff69b4"
},
{
"name": "Scary",
"words": ["monkaS", "monkaW"],
"top": 1,
"color": "#9400d3"
},
{
"name": "Sad",
"words": ["PepeHands", "FeelsBadMan", "Sadge", "BibleThump", ":("],
"top": 1,
"color": "#0000cd"
},
{
"name": "Weird",
"words": ["WutFace", "DansGame", "WeirdChamp", "yikes", "regex:WTF+", "regex:bruh+", "regex:\\?+"],
"top": 1,
"color": "#000000"
},
{
"name": "Surprise",
"words": ["D:"],
"top": 1,
"color": "#cde677"
},
{
"name": "Rambling",
"words": ["peepoG"],
"top": 1,
"color": "#006400"
},
{
"name": "Jam",
"words": ["ratJAM", "SourPls"],
"top": 1,
"color": "#ffdf00"
}
],
"comparisons":
[
{
"name": "+2 vs -2",
"positive_category": "Good Bit",
"negative_category": "Bad Bit",
"positive_name": "Best Bit",
"negative_name": "Worst Bit",
"controversial_name": "Controversial Bit",
"positive_top": 5,
"negative_top": 1,
"controversial_top": 1
}
]
}
}