generated from Raysha7/tk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
109 lines (109 loc) · 3.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
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
{
"name": "TK - TorToolKit",
"description": "A Telegram Bot that leeches magnet/torrent links/files from the interent. YT-DL supported for downloading youtube videos. Supports uploading to different cloud providers. ",
"keywords": [
"telegram","bot","torrent","leech"
],
"repository": "https://github.com/manybotts/ttk",
"success_url": "https://github.com/manybotts/ttk",
"website": "https://github.com/manybotts/ttk",
"env": {
"BOT_TOKEN": {
"description": "Your bot token, as a string.",
"value": ""
},
"APP_ID": {
"description": "Get this value from https://my.telegram.org",
"value": ""
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"value": ""
},
"BASE_URL_OF_BOT": {
"description": "https://appname.herokuapp.com",
"value": ""
},
"AUTH_CHANNEL": {
"description": "ALLOWED USERS [ids of user or supergroup] seperate by spaces",
"value": ""
},
"GD_INDEX_URL": {
"description": "gdrive index link",
"required": false
},
"EDIT_SLEEP_TIME_OUT": {
"description": "Time to wait before edit message",
"value": "15",
"required": false
},
"FORCE_DOCUMENTS": {
"description": "Should force evething uploaded into Document",
"value": "False"
},
"COMPLETED_STR": {
"description": "Character to use as a completed progress",
"required": false
},
"REMAINING_STR": {
"description": "Character to use as a incomplete progress",
"required": false
},
"RCLONE_ENABLED": {
"description": "Will be enabled once its set",
"value": "False"
},
"RCLONE_CONFIG": {
"description": "path to rclone.conf, if you uploaded rclone.conf, it should be at /app/rclone.conf",
"value": "/app/rclone.conf",
"required": false
},
"DEF_RCLONE_DRIVE": {
"description": "Name of the RCLONE drive from the config",
"required": false
},
"RCLONE_BASE_DIR": {
"description": "The base direcory to which the files will be upload if using rclone",
"value": "/",
"required": false
},
"MAX_YTPLAYLIST_SIZE": {
"description": " Max size of a playlist that is allowed (Number of videos)",
"value": "20",
"required": false
},
"MAX_TORRENT_SIZE": {
"description": "Max size of the torrent allowed",
"value": "10",
"required": false
},
"BOT_CMD_POSTFIX": {
"description": "Set this to your bot username if you want to add the username of your bot at the end of the commands like /leech@TorToolkitBot so the value will be @TorToolkitBot",
"required": false
},
"USETTINGS_IN_PRIVATE": {
"description": "Allow the user settings to be accessed in private",
"value": "False",
"required": false
},
"LEECH_ENABLED": {
"description": "Upload to telegram should be enabled or not.",
"value": "True",
"required": false
},
"OWNER_ID": {
"description": "Used to restrict use of certain stuff to owner only.",
"value": "12345678",
"required": true
}
},
"stack": "container",
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "14"
}
}
]
}