This repository has been archived by the owner on Oct 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
sample.config.json
89 lines (89 loc) · 1.69 KB
/
sample.config.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
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
{
"services": {
"twitter": {
"applications": {
"ExampleApp": {
"ck": "xxx",
"cs": "yyy"
},
"FunnyApp": {
"ck": "yyy",
"cs": "yyy"
}
},
"accounts": {
"ExampleBot": {
"application": "ExampleApp",
"at": "xxx",
"ats": "xxx",
"id": 100000000,
"sn": "TwitterBot"
},
"FunnyBot": {
"application": "FunnyApp",
"at": "yyy",
"ats": "yyy",
"id": 200000000,
"sn": "TwitterBot2"
}
},
"mute": {
"via": [
"twittbot.net"
],
"user_id": [
300000000, 400000000
],
"user_sn": [
"twitter"
],
"domain": [
"facebook.com"
]
}
},
"discord": {
"accounts": {
"ExampleBot": {
"token": "xxxxxxxxxx",
"id": 8000000000000,
"prefix": "!"
},
"AwesomeBot": {
"token": "xxxxxxxxxx",
"id": 9000000000000,
"prefix": "?"
}
}
}
},
"database": {
"mongodb": {
"host": null,
"port": null,
"username": null,
"password": null,
"mechanism": null
}
},
"webui": {
"enabled": true,
"host": "127.0.0.1",
"port": 5000
},
"secret": {
"awesomeWebServiceKey": "xxx-yyy-zzz"
},
"logging": {
"level": "info",
"slack": {
"enabled": false,
"webhookUrl": null,
"channel": "#python-log",
"username": "Python Logger",
"iconEmoji": ":desktop_computer:",
"iconUrl": null,
"logLevel": "error"
}
}
}