-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
47 lines (46 loc) · 1.25 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
{
"name": "thangmo",
"description": "A small app to send hot stories from HackerNews or links from RSS channels to Telegram channels",
"repository": "https://github.com/minhdanh/thangmo",
"keywords": ["go", "golang", "bot", "telegram", "hackernews", "rss", "feed"],
"env": {
"BITLY_API_TOKEN": {
"description": "Bitly API token",
"required": "false"
},
"BITLY_ENABLED": {
"description": "Whether or not to use Bitly to shorten links",
"value": "true",
"required": "false"
},
"HACKERNEWS_ENABLED": {
"description": "Whether or not to enable HackerNews posts",
"value": "true",
},
"HACKERNEWS_MIN_SCORE": {
"description": "Minimum score of the posts",
"value": "200",
},
"HACKERNEWS_YCOMBINATOR_LINK": {
"description": "Whether or not to include a link to HackerNews",
"value": "true",
"required": "false"
},
"TELEGRAM_API_TOKEN": {
"description": "Telegram API token",
},
"TELEGRAM_CHANNEL": {
"description": "Default Telegram channel to send messages to",
}
},
"addons": [
{
"plan": "rediscloud:30",
"as": "REDISCLOUD"
},
{
"plan": "scheduler:standard",
"as": "SCHEDULER"
}
]
}