forked from yuvraj371/Autoforwardbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
37 lines (37 loc) · 921 Bytes
/
app.json
File metadata and controls
37 lines (37 loc) · 921 Bytes
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
{
"name": "your-telegram-bot",
"description": "Your Telegram Forward Bot",
"repository": "https://github.com/yourusername/your-telegram-bot-repo",
"logo": "https://example.com/path/to/your/logo.png",
"keywords": ["telegram", "bot", "forward", "python"],
"addons": [
"heroku-postgresql:hobby-dev",
"scheduler:standard"
],
"env": {
"API_ID": {
"description": "Your Telegram API ID",
"required": true
},
"API_HASH": {
"description": "Your Telegram API Hash",
"required": true
},
"BOT_TOKEN": {
"description": "Your Telegram Bot Token",
"required": true
},
"MONGO_URI": {
"description": "Your MongoDB URI for storing data (optional)",
"required": false
}
},
"scripts": {
"heroku-postbuild": "python setup.py"
},
"formation": {
"web": {
"quantity": 1
}
}
}