-
Notifications
You must be signed in to change notification settings - Fork 85
/
app.json
78 lines (77 loc) · 2.21 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
{
"name": "File-SHare-Bot",
"description": "File Share Bot Store Posts in Db Channel And it Can Access By Special Links",
"keywords": [
"telegram",
"File",
"Share"
],
"repository": "https://github.com/COLD-ONEZ/File-SHare-Bot",
"logo": "https://telegra.ph/file/0f3e2323abbfb493ca817.jpg",
"env": {
"TG_BOT_TOKEN": {
"description": "Your Bot token, Get it from @Botfather",
"value": ""
},
"OWNER_ID": {
"description": "An integer of consisting of your owner ID",
"value": "1250450587"
},
"APP_ID":{
"description": "your app id, take it from my.telegram.org",
"value": ""
},
"API_HASH":{
"description": "your api hash, take it from my.telegram.org",
"value": ""
},
"CHANNEL_ID":{
"description": "make a channel (database channel), then make the bot as admin in channel, and it's id",
"value": "-100"
},
"FORCE_SUB_CHANNEL":{
"description": "id of the channel or group, if you want enable force sub feature else put 0",
"value": "0"
},
"START_MESSAGE": {
"description": "Optional: start message of bot, use HTML parsemode format",
"value": "Hello {first}\n\nI can store private files in Specified Channel and other users can access it from special link."
},
"FORCE_SUB_MESSAGE": {
"description": "Optional: Force Sub message of bot, use HTML parsemode format",
"value": "Hello {first}\n\n<b>You need to join in my Channel/Group to use me\n\nKindly Please join Channel</b>"
},
"CUSTOM_CAPTION":{
"description": "Set Your Custom Caption Here, Keep None For Disable Custom Caption",
"value": "None"
},
"DISABLE_CHANNEL_BUTTON": {
"description": "Set True if You Want Button in Post.",
"value": "false"
},
"ADMINS": {
"description": "A space separated list of user_ids of Admins, they can only create links",
"value": "",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "12"
}
}
],
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}