forked from domenic/unownbot-filtered
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sample.json
58 lines (53 loc) · 1.15 KB
/
config.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
{
"configLabel": "",
"twitter": {
"consumerKey": "",
"consumerSecret": "",
"accessToken": "",
"accessTokenSecret": ""
},
"twilio": {
"accountSID": "",
"authToken": "",
"phoneNumber": "+15551234567"
},
"server": {
"logFilePath": "log.txt",
"port": 3000
},
"accountIDToFollow": "837234225715818497",
"locations": [
{
"label": "Mountain View, CA",
"latitude": 37.4220,
"longitude": -122.0841,
"radius": 30,
"players": [
{
"name": "Joe B",
"cell": "+15551112222"
},
{
"name": "Suzy Q",
"cell": "+15551113333"
}
]
},
{
"label": "Seattle, WA",
"latitude": 47.6492973,
"longitude": -122.3505347,
"radius": 30,
"players": [
{
"name": "Jane D",
"cell": "+15551114444"
},
{
"name": "Arnold S",
"cell": "+15551115555"
}
]
}
]
}