forked from odysseusmax/animated-lamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
148 lines (74 loc) · 2.12 KB
/
app.json
File metadata and controls
148 lines (74 loc) · 2.12 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "Screenshot Bot",
"description": "Screenshot /Sample Video / Trim Video files",
"logo": " https://telegra.ph/file/53effe59faaa2590545b1.jpg",
"keywords": [
"telegram",
"Screenshot",
"Sample video",
"Trim Video",
"without downloading the entire file"
],
"repository": "https://github.com/sahadz/screenShot-Bot",
"env": {
"API_ID": {
"description": "Your Telegram API ID. Get this value from my.telegram.org!",
"value": ""
},
"API_HASH": {
"description": " Your Telegram API HASH. Get this value from my.telegram.org!",
"value": ""
},
"BOT_TOKEN": {
"description": "Your Bot token, as a string.",
"value": ""
},
"SESSION_NAME": {
"description": "Name you want to call your bot's session, Eg: bot username.",
"value": ""
},
"LOG_CHANNEL": {
"description": "Log channel's id.",
"value": ""
},
"DATABASE_URL": {
"description": "Mongodb database URI from https://cloud.mongodb.com/",
"value": ""
},
"AUTH_USERS": {
"description": "Authorised user(s) id separated by space.",
"value": ""
},
"HOST": {
"description": "public url stream service",
"value": ""
},
"MAX_PROCESSES_PER_USER": {
"description": "Number of parallel processes each user can have, defaults to 2.",
"value": "2",
"required": false
},
"MAX_TRIM_DURATION": {
"description": "Maximum allowed seconds for trimming. Defaults to 600.",
"value": "600",
"required": false
},
"TRACK_CHANNEL": {
"description": "User activity tracking channel's id. Only needed if you want to track and block any user. Disabled by default.",
"required": false
},
"SLOW_SPEED_DELAY": {
"description": "Delay required between each request. Defaults to 15s.",
"value": "15",
"required": false
}
},
"addons": [
],
"buildpacks": [{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}]
}