-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
42 lines (42 loc) · 1.05 KB
/
app.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
{
"name": "Every Word Twitter Bot",
"description": "Simple ruby program to create \"every word\" twitter bots.",
"keywords": [
"twitter",
"twitter bots",
"wordnik",
"ruby"
],
"website": "https://github.com/srhbutts/every-word",
"repository": "https://github.com/srhbutts/every-word",
"env": {
"CONSUMER_KEY": {
"description": "Consumer key from Twitter API.",
"required": "true"
},
"CONSUMER_SECRET": {
"description": "Consumer secret from Twitter API.",
"required": "true"
},
"ACCESS_TOKEN": {
"description": "Access token from Twitter API.",
"required": "true"
},
"ACCESS_TOKEN_SECRET": {
"description": "Access token secret from Twitter API.",
"required": "true"
},
"WORDNIK_KEY": {
"description": "Wordnik API key.",
"required": "true"
},
"EVERY_WORD_WORD": {
"description": "Choose the word that you want to correspond to your bot.",
"required": "true"
}
},
"image": "heroku/ruby",
"addons": [
"scheduler"
]
}