This repository has been archived by the owner on Dec 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json.dist
122 lines (122 loc) · 2.65 KB
/
config.json.dist
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
{
"servers": [
{
"name": "test_server",
"host": "irc.myserver.com",
"nick": "testbot",
"userName": "bot",
"realName": "I am a bot",
"channels": ["#foobar"]
}
],
"database": {
"sqlite": {
"file": "data/database.sqlite"
},
"mongodb": {
"host": "localhost",
"database": "juanpablo"
}
},
"modules": {
"enabled": [
"demo",
"mongodb",
"commands",
"seasondata",
"racecalendar",
"raceresults",
"racenotify",
"topicresults",
"bets",
"chanlog",
"pagetitle",
"feeds",
"polls",
"rest",
"restapi"
],
"commands": {
"admins": ["demo"],
"blacklist": {
"nick": [],
"auth": [],
"host": []
},
"whitelist": [
{
"demo": ["poll"]
}
]
},
"racecalendar": {
"file": "./data/season2016.ics"
},
"seasondata": {
"source": {
"ergast": "http://ergast.com/api/f1/%d/drivers.json"
}
},
"standings": {
"drivers": "http://www.formula1.com/content/fom-website/en/championship/results/2016-driver-standings.html",
"teams": "http://www.formula1.com/content/fom-website/en/championship/results/2016-constructor-standings.html"
},
"feeds": {
"refresh": 300,
"publish": 10,
"sources": [
{
"name": "Autosport",
"url": "http://www.autosport.com/rss/f1news.xml"
},
{
"name": "F1Fanatic",
"url": "http://www.f1fanatic.co.uk/feed/"
},
{
"name": "BBC",
"url": "http://feeds.bbci.co.uk/sport/0/formula1/rss.xml"
},
{
"name": "James Allen",
"url": "http://www.jamesallenonf1.com/feed/"
},
{
"name": "F1 Technical",
"url": "http://www.f1technical.net/rss/news.xml"
},
{
"name": "Motorsport",
"url": "http://www.motorsport.com/rss/category/f1/news"
},
{
"name": "f1chan.com Blog",
"url": "https://www.f1chan.com/feed/"
},
{
"name": "GP247",
"url": "http://www.grandprix247.com/feed/"
}
]
},
"polls": {
"expires": 300,
"options": ["yes", "no"]
},
"betgame": {
"results": "https://en.wikipedia.org/wiki/2015_Formula_One_season",
"baseurl": "https://en.wikipedia.org"
},
"chanlog": {
"database": {
"sqlite": {
"file": "data/chanlog.sqlite"
}
}
},
"rest": {
"address": "localhost",
"port": 8000
}
}
}