-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathapp.json
55 lines (55 loc) · 1.63 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
{
"name": "Video-subtitle-merger",
"logo": "https://telegra.ph//file/d862f12b9c2ec6bc3cbaf.jpg",
"description": "Telegram bot to mux subtitles with the video",
"keywords": [
"telegram-bot",
"subtitles",
"muxing"
],
"repository": "https://github.com/NaysaBots/subtitle-muxer-bot",
"website": "https://t.me/naysabots",
"success_url": "https://t.me/naysabots",
"env": {
"BOT_TOKEN": {
"description": "Create It New Bot From Bot Father and Paste a token here",
"required": "True"
},
"API_HASH": {
"description": "Get it from my telegram.org",
"required": "True"
},
"APP_ID": {
"description": "Get it from my telegram.org",
"required": "True"
},
"OWNER_ID": {
"description": "Get It From IDFinderRobot by Pressing id command",
"required": "True"
},
"DATABASE_URL": {
"description": "Your MongoDB URI",
"value": ""
},
"SESSION_NAME": {
"description": "Your Session Name",
"value": "TELLYBOTS"
},
"UPDATES_CHANNEL": {
"description": "Get it From IDFinderRobot By Forwarding Msg From Channel to get id",
"required": "True"
},
"LOG_CHANNEL": {
"description": "Get it From IDFinderRobot By Forwarding Msg From Channel to get id",
"required": "False"
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{
"url": "heroku/python"
}
]
}