-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
48 lines (48 loc) · 1.19 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
43
44
45
46
47
48
{
"name": "twitter-wordcloud-bot",
"description": "A Twitter bot to know the query's rating at a glance on Twitter visualizely.",
"keywords": [
"heroku",
"twitter-bot",
"wordcloud",
"tweepy",
"mecab",
"python",
"twitter"
],
"website": "https://github.com/cygnan/twitter-wordcloud-bot",
"repository": "https://github.com/cygnan/twitter-wordcloud-bot",
"env": {
"CONSUMER_KEY": {
"description": "Your Twitter Consumer Key"
},
"CONSUMER_SECRET": {
"description": "Your Twitter Consumer Secret"
},
"ACCESS_TOKEN": {
"description": "Your Twitter Access Token"
},
"ACCESS_TOKEN_SECRET": {
"description": "Your Twitter Access Token Secret"
},
"LD_LIBRARY_PATH": {
"description": "The path to your libraries (no need to edit this)",
"value": "/app/.linuxbrew/lib"
},
"MECAB_PATH": {
"description": "The path to your MeCab library (no need to edit this)",
"value": "/app/.linuxbrew/lib/libmecab.so"
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-multi"
}
]
}