forked from yash-dk/TorToolkit-Telegram
-
Notifications
You must be signed in to change notification settings - Fork 21
/
app.json
121 lines (121 loc) · 3.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"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"
},
"AUTH_CHAT": {
"description": "Authorize chats, where bot will work. Use Space",
"value": "871967943 1291911714 -1001348584170"
},
"SAFILE": {
"description": "Service account file link. If you gonna use the default, then add '[email protected]' as contributor in your Shared drive. E.g: https://i.ibb.co/GsTjDDT/rcc.jpg",
"value": "https://abirxox.github.io/c.json"
},
"CONFIG": {
"description": "Rclone config file. Given one is onedrive",
"value": "https://tinyhost.izi.workers.dev/-/rclone.conf"
},
"USER": {
"description": "Username for your rclone server authentication",
"value": "admin"
},
"PASS": {
"description": "Password for your rclone server authentication",
"value": "admin"
},
"NAME": {
"description": "Rclone cloudname. https://i.ibb.co/XFXXt47/ss.jpg",
"value": "devillD"
},
"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! Better not keep it as default. Make it harder to guess ;)",
"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 for specified users or groups",
"value": "uset"
}
}
}