forked from dipu-bd/lightnovel-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
50 lines (50 loc) · 1.36 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
49
50
{
"name": "lightnovel crawler",
"description": "Downloads lightnovels from various online sources and generates ebooks in many formats.",
"keywords": [
"discord",
"bot",
"telegram",
"novel",
"lightnovel",
"crawler"
],
"website": "https://github.com/dipu-bd/lightnovel-crawler",
"logo": "https://github.com/dipu-bd/lightnovel-crawler/raw/master/res/lncrawl-icon.png",
"env": {
"LOG_LEVEL": {
"description": "Available levels: NOTSET, WARN, INFO, DEBUG, FATAL, ERROR",
"value": "INFO",
"required": true
},
"BOT": {
"description": "available: console, discord, telegram",
"value": "discord",
"required": true
},
"TELEGRAM_TOKEN": {
"description": "Telegram token, only required if BOT is set to telegram",
"required": false
},
"DISCORD_TOKEN": {
"description": "Discord token, only required if BOT is set to discord",
"required": false
},
"DISCORD_SIGNAL_CHAR": {
"description": "Discord command prefix, only required if BOT is set to discord",
"required": false,
"value": "!"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
},
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "https://github.com/nntin/heroku-buildpack-calibre"
}
]
}