-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathapp.json
138 lines (137 loc) · 4.28 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
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
{
"name": "TG File Share/Sharing Bot",
"description": "file sharing bot store posts and it can access by special links",
"keywords": [
"telegram",
"file",
"sharing"
],
"repository": "https://github.com/Sachinanand99/File-Sharing-Telegram-bot/tree/main",
"logo": "https://ibb.co/FgPVtzw",
"env": {
"ADMINS" : {
"description" : "Enter admins no need to add owner id, add with no commas and no hyphens",
"value": "",
"required": false
},
"TG_BOT_TOKEN": {
"description": "Your Bot token, Get it from @Botfather",
"value": ""
},
"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": ""
},
"DB_URL": {
"description": "Paste your mongo db url",
"value": ""
},
"DB_NAME":{
"description": "Enter your DATABASE_NAME ",
"value": "",
"required":false
},
"CHANNEL_ID":{
"description": "make a channel (database channel), then make the bot as admin in channel, and it's put channel id",
"value": ""
},
"OWNER_ID": {
"description": "enter owners id",
"value" : ""
},
"OWNER_TAG":{
"description":"Enter owner's tag without @",
"value": ""
},
"TIME": {
"description":"Enter the time after which message gets deleted",
"value": "60",
"required": false
},
"FORCE_SUB_CHANNEL": {
"description": "Enter your channel id for forcesub 1",
"value": "0",
"required": false
},
"FORCE_SUB_CHANNEL2": {
"description": "Enter your channel id for forcesub 2 ",
"value": "0",
"required": false
},
"BOT_STATS_TEXT": {
"description": "Enter your custom bot stat text with fillings",
"value": "<b>BOT UPTIME</b>\n{uptime}",
"required": false
},
"USER_REPLY_TEXT":{
"description": "Enter user reply text when they interact with bot",
"value": "❌Don't send me messages directly I'm only File Share bot!",
"required" : false
},
"START_MSG":{
"description":"Enter your bot start message when user interact for the first time.",
"value": "Hello {first}\n\nI can store private files in Specified Channel and other users can access it from special link.",
"required": false
},
"USE_SHORTLINK":{
"description":"Enter True for enabling this feature",
"value": "False",
"required": false
},
"SHORTLINK_API_URL": {
"description":"Enter your shortlink url",
"value" : "",
"required":false
},
"SHORTLINK_API_KEY":{
"description": "Enter your shortlink api key",
"value" : "",
"required" : false
},
"VERIFY_EXPIRE": {
"description" : "Enter your expiration time 24hr = 86400 12hr = 43200",
"value": "86400",
"required": false
},
"TUT_VID": {
"description" : "Enter tutorial link url",
"value": "https://t.me/How_to_Download_7x/32",
"required": false
},
"FORCE_MSG": {
"description": "Force message for joining the channel",
"value" : "Hello {first}\n\n<b>You need to join in my Channel/Group to use me\n\nKindly Please join Channel</b>",
"required": false
},
"CUSTOM_CAPTION": {
"description": "Enter custom caption",
"value": null,
"required": false
},
"PROTECT_CONTENT": {
"description" : "Enter True if need to stop forwarding from bot",
"value" : "False",
"required": false
},
"DISABLE_CHANNEL_BUTTON": {
"description" : "Enter False if need to enable buttons in database channel",
"value" : "True",
"required" : false
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
}
}