forked from Malith-Rukshan/Auto-Reaction-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
23 lines (22 loc) · 683 Bytes
/
vercel.json
File metadata and controls
23 lines (22 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"version": 2,
"builds": [
{
"src": "api/index.js",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/api/index.js"
}
],
"env": {
"BOT_TOKEN": "The Telegram bot token (Generate from BotFather).",
"BOT_USERNAME": "The username you have set for your bot.",
"EMOJI_LIST": "A string of emojis that the bot will use to react to messages.",
"RANDOM_LEVEL": "Sets the randomness of group chat reactions; higher values mean more variability (Optional).",
"RESTRICTED_CHATS": "A list of chat IDs where the bot should not react to messages (Optional)."
}
}