forked from mvplID/TortoolkitHeroku-DEVILID
-
Notifications
You must be signed in to change notification settings - Fork 13
/
app.json
97 lines (97 loc) · 2.43 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "TorToolkit-Telegram",
"description": "Telegram leecher bot with python",
"logo": "https://raw.githubusercontent.com/devillD/TorToolkit-Telegram/heroku/toolkit.jpg",
"keywords": [
"telegram",
"bot",
"qBittorrent",
"python"
],
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "13"
}
}
],
"repository": "https://github.com/devillD/TorToolkit-Telegram",
"website": "https://github.com/devillD/TorToolkit-Telegram/tree/heroku",
"success_url": "https://github.com/devillD/TorToolkit-Telegram/blob/heroku/readme.md",
"stack": "container",
"env": {
"API_HASH": {
"description": "Get your api hash from http://my.telegram.org/",
"value": "xxxxxxxxxxxx"
},
"API_ID": {
"description": "Get your api id from http://my.telegram.org/",
"value": "xxxxxxxx"
},
"BOT_TOKEN": {
"description": "Get your bot token from @BotFather",
"value": "xxxxxxxx"
},
"BASE_URL": {
"description": "Base URL for selecting torrent file",
"value": "<your app name>.herokuapp.com"
},
"LEECH_CMD": {
"description": "Leech command",
"value": "leech"
},
"PURGE_CMD": {
"description": "Purge command",
"value": "purge"
},
"PAUSEALL_CMD": {
"description": "Pauseall command",
"value": "pauseall"
},
"RESUMEALL_CMD": {
"description": "Resumeall command",
"value": "resumeall"
},
"STATUS_CMD": {
"description": "Status command",
"value": "status"
},
"SETTINGS_CMD": {
"description": "Admin Settings command",
"value": "settings"
},
"EXEC_CMD": {
"description": "execute command",
"value": "exec"
},
"UPLOAD_CMD": {
"description": "Upload command",
"value": "upload"
},
"YTDL": {
"description": "Youtube Download command",
"value": "ytdl"
},
"PYTDL": {
"description": "PlayList of youtube download command",
"value": "pytdl"
},
"ABOUT_CMD": {
"description": "About command",
"value": "about"
},
"GETLOGS_CMD": {
"description": "GetLog command",
"value": "getlogs"
},
"SERVER_CMD": {
"description": "Get server info command",
"value": "server"
},
"USERSETTINGS_CMD": {
"description": "User Settings command",
"value": "uset"
}
}
}