-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathapp.json
More file actions
50 lines (50 loc) · 1.65 KB
/
Copy pathapp.json
File metadata and controls
50 lines (50 loc) · 1.65 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
{
"name": "autoreactionbot",
"description": "A Telegram Bot that automatically reacts to posts in Telegram Channels, groups, and private messages, developed as a serverless application.",
"repository": "https://github.com/TechifyBots/Auto-Reaction-Bot",
"env": {
"BOT_TOKEN": {
"description": "The Telegram bot token (Generate from BotFather)",
"required": true
},
"BOT_USERNAME": {
"description": "The username you have set for your bot.",
"required": true
},
"EMOJI_LIST": {
"description": "A string of emojis that the bot will use to react to messages.",
"required": true
},
"RANDOM_LEVEL": {
"description": "Reaction randomness for groups (0-10). 0 = always, 10 = rarely.",
"required": false,
"value": "0"
},
"RESTRICTED_CHATS": {
"description": "A list of chat IDs where the bot should not react to messages (Optional)",
"required": false
},
"OWNER_ID": {
"description": "Telegram user ID for owner-only commands (/broadcast, /log, /leave, /chats).",
"required": false
},
"WEBHOOK_SECRET": {
"description": "Secret token for webhook validation (optional). Validation disabled when not set.",
"required": false
},
"BOT_PHOTO": {
"description": "Photo URL or Telegram file_id for bot messages (/start, /help, etc).",
"required": false
},
"PORT": {
"description": "Port to run the app on",
"required": false,
"value": "3000"
}
},
"formation": {
"web": {
"quantity": 1
}
}
}