-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathapp.json
49 lines (49 loc) · 1.23 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "Node.js FilterBot",
"description": "A barebone filter bot",
"repository": "https://github.com/binamracode/filterbotheroku/node-js-getting-started",
"logo": "https://node-js-sample.herokuapp.com/node.png",
"keywords": ["node", "telegram", "bot"],
"env": {
"AUTHORIZED_USERS": {
"description": "List of Authorized Users who can control this bot (Separate with spaces)",
"value": ""
},
"APP_ID": {
"description": "App ID of your telegram account (my.telegram.org)",
"value": ""
},
"API_HASH": {
"description": "API Hash of your telegram account (my.telegram.org)",
"value": ""
},
"STRING_SESSION": {
"description": "Your User Session",
"value": ""
},
"BOT_TOKEN": {
"description": "Token of your bot (@BotFather)",
"value": ""
},
"MONGODB_URI": {
"description": "Database URL from https://cloud.mongodb.com/",
"value": ""
},
"LOG_CHANNEL": {
"description": "Channel ID where you want to log error messages",
"required": false,
"value": ""
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}