-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathexample-conf.json
executable file
·75 lines (75 loc) · 2.02 KB
/
example-conf.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
{
"server": {
"port": 3000,
"cors": {
"allowedOrigins": ["http://localhost:8881"]
}
},
"database": {
"type": "postgres",
"host": "localhost",
"port": 5432,
"database": "socialharvest"
},
"logs" : {
"directory": "/usr/local/sites/tmp"
},
"services": {
"twitter": {
"apiKey": "xxxxxxxxx",
"apiSecret": "xxxxxxxxx",
"accessToken": "xxxxxxxxx",
"accessTokenSecret": "xxxxxxxxx"
},
"facebook": {
"appToken": "xxxxxxxxx|xxxxxxxxx"
},
"google": {
"serverKey": "xxxxxxxxx"
}
},
"harvest": {
"questionRegex": "(?i)\\w\\?(\\s|\\n)|i.*(would|like|need|have|love).*to know about[^a-zA-Z]",
"territories": [
{
"name": "javascript",
"content": {
"lang": "en",
"keywords": ["javascript", "angularjs"],
"urls": ["http://www.shift8creative.com/blog/some-post"]
},
"accounts": {
"twitter": [
"56448819"
],
"facebook": [
"113124472034820"
],
"googlePlus": [],
"youTube": []
},
"streams": {
"twitter": []
},
"schedule": {
"everything": {
"content": "@hourly",
"accounts": "@hourly"
},
"twitter": {
"content": "@every 1h30m",
"accounts": "0 30 * * * *"
},
"facebook": {
"content": "@hourly",
"accounts": "@hourly"
}
},
"limits": {
"maxResultsPages": 2,
"resultsPerPage": "100"
}
}
]
}
}