forked from dipu-bd/lightnovel-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
68 lines (68 loc) · 1.9 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "lightnovel crawler",
"description": "Downloads lightnovels from various online sources and generates ebooks in many formats.",
"keywords": [
"bot",
"discord",
"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": true
},
"DISCORD_DISABLE_SEARCH": {
"description": "Disable searching in discord bot",
"required": false,
"value": "false"
},
"CLOUD_DRIVE": {
"description": "Available: GOFILE, GOOGLE_DRIVE, ANONFILES",
"required": false,
"value": "ANONFILES"
},
"GOOGLE_DRIVE_CREDENTIAL_FILE": {
"description": "Google Drive service credentials to use",
"required": false,
"value": "mycreds.txt"
},
"GOOGLE_DRIVE_FOLDER_ID": {
"description": "Google Drive folder id to upload",
"required": false
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "https://github.com/heroku/heroku-buildpack-apt"
},
{
"url": "https://github.com/NNTin/heroku-buildpack-calibre"
}
]
}