-
Notifications
You must be signed in to change notification settings - Fork 13
/
config.json.sample
123 lines (118 loc) · 3.73 KB
/
config.json.sample
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
{
"neo4j": {
"host": "localhost:7474",
"bolt": "localhost",
"username": "neo4j",
"password": "Really_Secure_Local_Db_Password"
},
"secrets": {
"invitation": "secretcode",
"cookie_secret": "your_cookie_secret"
},
"infranodus": {
"domain": "localhost:3000",
"default_user": ""
},
"evernote": {
"API_CONSUMER_KEY" : "app_name",
"API_CONSUMER_SECRET" : "app_secret",
"CALLBACK_URL": "http://localhost:3000/evernote_oauth_callback",
"SANDBOX" : true
},
"twitter": {
"consumer_key": "secret",
"consumer_secret": "secret",
"access_token": "token-secret",
"access_token_secret": "token-secret"
},
"chargebee": {
"site": "",
"api_key": "secret",
"redirect_url": ""
},
"rss_presets": {
"news": {
"id": "news",
"name": "News of the Day",
"urls": [
"https://www.theguardian.com/world/rss",
"http://www.wsj.com/xml/rss/3_7085.xml",
"http://rss.nytimes.com/services/xml/rss/nyt/World.xml",
"http://feeds.washingtonpost.com/rss/world",
"https://www.ft.com/?format=rss"
],
"items": 15
},
"guardian": {
"id": "guardian",
"name": "The Guardian RSS",
"urls": ["https://www.theguardian.com/rss"],
"items": 20
},
"ft": {
"id": "ft",
"name": "FT.Com RSS",
"urls": ["https://www.ft.com/?format=rss"],
"items": 20
},
"wsj": {
"id": "wsj",
"name": "Wall Street Journal RSS",
"urls": ["http://www.wsj.com/xml/rss/3_7085.xml"],
"items": 10
},
"nyt": {
"id": "nyt",
"name": "New York Times RSS",
"urls": ["http://rss.nytimes.com/services/xml/rss/nyt/World.xml"],
"items": 20
},
"french": {
"id": "french",
"name": "France News RSS",
"urls": [
"http://www.lemonde.fr/rss/une.xml",
"http://www.bfmtv.com/rss",
"http://www.lefigaro.fr/rss/figaro_actualites.xml",
"http://rss.liberation.fr/rss/latest/",
"http://www.leparisien.fr/une/rss.xml"
],
"items": 15
},
"russian": {
"id": "russian",
"name": "Russian News RSS",
"urls": [
"https://www.vedomosti.ru/rss/news",
"https://meduza.io/rss/all",
"http://static.feed.rbc.ru/rbc/logical/footer/news.rss",
"https://russian.rt.com/rss",
"https://lenta.ru/rss"
],
"items": 15
},
"german": {
"id": "german",
"name": "German News RSS",
"urls": [
"http://www.faz.net/rss/aktuell/",
"http://rss.sueddeutsche.de/app/service/rss/alles/index.rss?output=rss",
"https://www.welt.de/feeds/latest.rss",
"https://www.tagesspiegel.de/contentexport/feed/home",
"http://www.taz.de/!p15;rss/"
],
"items": 15
},
"tech": {
"id": "tech",
"name": "Tech News RSS",
"urls": [
"http://feeds.feedburner.com/TechCrunch",
"https://www.technologyreview.com/topnews.rss",
"http://feeds.arstechnica.com/arstechnica/technology-lab",
"http://feeds.feedburner.com/venturebeat/SZYF"
],
"items": 15
}
}
}