-
Notifications
You must be signed in to change notification settings - Fork 18
/
app.json
56 lines (54 loc) · 1.45 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
50
51
52
53
54
55
56
{
"name": "chatbot",
"env": {
"BOT_TOKEN": {
"description": "telegram bot token here",
"required": true
},
"MONGO_URL": {
"description": "mongo db url here",
"required": true
},
"BOT_USERNAME": {
"description": "telegram bot username here without @",
"required": false
},
"OWNER_USERNAME": {
"description": "Owner Username without @",
"required": false
},
"BOT_NAME": {
"description": "Simple Bot-name. Do not use Modified Text..",
"required": false
},
"UPDATE_CHNL": {
"description": "Your Updates Channel without @",
"required": false
},
"SUPPORT_GRP": {
"description": "Your Support Group without @",
"required": false
},
"STKR":{
"description":"fill stickers id here",
"required":true
},
"START_IMG": {
"description": "Start Image For Bot.",
"required": false
},
"API_ID": {
"description": "telegram api id here",
"required": true
},
"API_HASH": {
"description": "telegram api hash here",
"required": true
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
]
}