-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathapp.json
More file actions
79 lines (79 loc) · 2.18 KB
/
app.json
File metadata and controls
79 lines (79 loc) · 2.18 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
{
"name": "TG video/file encoder Bot",
"description": "Simple Telegram Video Encoder Bot.",
"keywords": [
"telegram",
"python",
"video",
"compressor-bot"
],
"repository": "https://github.com/erotixe/video-encoder-bot",
"logo": "https://graph.org/file/49ab250d34f17b14ae559.jpg",
"env": {
"BOT_TOKEN": {
"description": "Your Bot token, Get it from @Botfather",
"value": ""
},
"OWNER_ID": {
"description": "An integer of consisting of your owner ID",
"value": "6497757690"
},
"APP_ID":{
"description": "your app id, take it from my.telegram.org",
"value": ""
},
"MONGO_URI": {
"description": "Paste your mongo db url",
"value": "url"
},
"SESSION_NAME":{
"description": "Enter your DATABASE_NAME ",
"value": "Cluster0"
},
"API_HASH":{
"description": "your api hash, take it from my.telegram.org",
"value": ""
},
"EVERYONE_CHATS":{
"description": " Chat identifier of the user who can't touch bot code.",
"value": "-1001995978690"
},
"INDEX_URL":{
"description": "Index url for drive uploads",
"value": "https://drive.google.com/drive/folders/12TojrNbqZJz40p1kqGAaMzL8WSDxl2Nq?usp=sharing"
},
"DRIVE_DIR":{
"description": "(Optional) Temporary download directory to keep downloaded files.",
"value": "12TojrNbqZJz40p1kqGAaMzL8WSDxl2Nq"
},
"DOWNLOAD_DIR": {
"description": "Optional: start message of bot, use HTML parsemode format",
"value": "VideoEncoder/downloads/"
},
"ENCODE_DIR": {
"description": "(Optional) Temporary encode directory to keep encoded files.",
"value": "VideoEncoder/encodes/"
},
"SUDO_USERS": {
"description": "Chat identifier of the sudo user.",
"value": "5115691197 6273945163 6103092779 5231212075",
"required": false
},
"LOG_CHANNEL": {
"description": "for bot logs (user and group id will also work!",
"value": "-1001868871195",
"required": true
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
}
}