-
Notifications
You must be signed in to change notification settings - Fork 8
/
config-sample.json
42 lines (42 loc) · 1.13 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
{
"prod": {
"twitter": {
"screen_name": "<main username>",
"user_id": "<id of the account to control>",
"admin_id": "<id of the account that will receive errors and notices>",
"consumer_key": "xxx",
"consumer_secret": "xxx",
"oauth_token": "xxx",
"oauth_secret": "xxx",
"tweet_rate": 30
},
"tumblr": {
"blog_name": "blog",
"blog_url": "blog.tumblr.com",
"consumer_key": "xxx",
"consumer_secret": "xxx",
"oauth_token": "xxx",
"oauth_secret": "xxx"
}
},
"dev": {
"twitter": {
"screen_name": "<dev username>",
"user_id": "<id of the account to control during development>",
"admin_id": "<id of the account that will receive errors and notices during development>",
"consumer_key": "xxx",
"consumer_secret": "xxx",
"oauth_token": "xxx",
"oauth_secret": "xxx",
"tweet_rate": 30
},
"tumblr": {
"blog_name": "blog-test",
"blog_url": "blog-test.tumblr.com",
"consumer_key": "xxx",
"consumer_secret": "xxx",
"oauth_token": "xxx",
"oauth_secret": "xxx"
}
}
}