-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathapp.json
More file actions
63 lines (63 loc) · 2 KB
/
app.json
File metadata and controls
63 lines (63 loc) · 2 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
{
"name": "TGMessageStore",
"description": "Telegram Bot to Create Permanent Shareable Links to a Batch of Messages",
"keywords": [
"Go",
"fileshare",
"filestore",
"messagestore",
"Telegram"
],
"website": "https://github.com/Jisin0",
"repository": "https://github.com/Jisin0/TGMessageStore",
"success_url": "https://telegram.dog/Jisin0",
"env": {
"BOT_TOKEN": {
"description": "Your Bot Token From @BotFather",
"value": ""
},
"ADMINS": {
"description": "List of telegram IDs of users allowed to create links with the bot, seperated by spaces.",
"value": ""
},
"PROTECT_CONTENT": {
"description": "Set this to true to prevent users from forwarding/copying content from the bot",
"value": ""
},
"ALLOW_PUBLIC": {
"description": "Set this to true to allow anyone to create batch links.",
"value": ""
},
"AUTO_DELETE": {
"description": "Number of minutes after which messages should be automatically deleted.",
"value": ""
},
"DISABLE_NOTIFICATION": {
"description": "Set this to true to send messages without a notification.",
"value": ""
},
"BATCH_SIZE_LIMIT": {
"description": "Maximum number of messages allowed in a batch.",
"value": ""
},
"FSUB": {
"description": "List of IDs of channels the user must join to get content, seperated by spaces.",
"value": ""
},
"DB_CHANNEL": {
"description": "Database channel only used for backward compatibilty with codex links.",
"value": ""
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-go.git"
}
],
"formation": {
"web": {
"quantity": 1,
"size": "eco"
}
}
}