forked from Malith-Rukshan/Auto-Reaction-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
36 lines (36 loc) · 1.1 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
{
"name": "auto-reaction-bot",
"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/Malith-Rukshan/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
},
"RESTRICTED_CHATS": {
"description": "A list of chat IDs where the bot should not react to messages (Optional)",
"required": false
},
"PORT": {
"description": "Port to run the app on",
"required": false,
"value": "3000"
}
},
"scripts": {
"postdeploy": "npm install && npm run build"
},
"formation": {
"web": {
"quantity": 1
}
}
}