-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathapp.json
72 lines (72 loc) · 1.8 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
{
"name": "Psyrex_bot",
"description": "A file forwarder bot",
"logo" : "" ,
"keywords": [
"telegram bot",
"frowarder bot",
"File forward",
"Utility bot",
"pyrogram"
],
"repository": "https://github.com/Gojo-Bots/file_sender",
"success_url": "https://t.me/@not_PSYREX",
"env": {
"BOT_TOKEN": {
"description": "Your telegram bot token, get from @Botfather in telegram.",
"required": true,
"value": ""
},
"API_ID": {
"description": "Get API_ID from my.telegram.org, used for pyrogram base.",
"required": true,
"value": ""
},
"API_HASH": {
"description": "Get API_HASH from my.telegram.org, used for pyrogram base.",
"required": true,
"value": ""
},
"OWNER_ID": {
"description": "Your user ID as an integer.",
"required": true,
"value": "1355478165"
},
"CHANNEL": {
"description": "List of your Telegram group chat id seprated with space",
"required": true,
"value": ""
},
"SUDO": {
"description": "List of id seprated with sapce who will be sudoers",
"required": false,
"value": ""
},
"DB_URI":{
"description":"You mongodb uri",
"required": true,
"value":""
},
"PREFIX_HANDLER": {
"description": "Something like '/' to execute commands...Don't give comma or anything after 1 handler just give and space then enter second hand;ler",
"required": true,
"value": "/ ! $"
},
"ENV": {
"description": "Setting this to ANYTHING will enable environment variables. Leave it as it is",
"required": true,
"value": "ANYTHING"
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}