-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathapp.json
More file actions
36 lines (36 loc) · 1.11 KB
/
app.json
File metadata and controls
36 lines (36 loc) · 1.11 KB
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
{
"name": "twitter-repeater",
"description": "Automatically retweet any tweets mentioning the bot",
"website": "https://github.com/chooper/twitter-repeater",
"addons": ["scheduler:standard"],
"env": {
"TW_OWNER_USERNAME": {
"description": "Twitter account to tell about new followers",
"value": ""
},
"TW_USERNAME": {
"description": "The twitter username this bot runs as",
"value": ""
},
"TW_CONSUMER_KEY": {
"description": "oauth consumer key - create new app at https://apps.twitter.com/",
"value": ""
},
"TW_CONSUMER_SECRET": {
"description": "oauth consumer secret - create new app at https://apps.twitter.com/",
"value": ""
},
"TW_ACCESS_TOKEN": {
"description": "oauth access token - create new app at https://apps.twitter.com/",
"value": ""
},
"TW_CONSUMER_TOKEN_SECRET": {
"description": "oauth access token secret - create new app at https://apps.twitter.com/",
"value": ""
},
"DEBUG": {
"description": "Use debug logging?",
"value": "true"
}
}
}