-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
44 lines (38 loc) · 1.11 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
{
"name": "JsFileStoreBot",
"description": "file storing bot made in JAVA SCRIPT",
"repository": "https://github.com/Kunal-Diwan/JsFileStoreBot",
"logo": "https://node-js-sample.herokuapp.com/node.png",
"keywords": ["telegram","filestoring","bot","nodejs"],
"env": {
"TOKEN": {
"description": "bot token provided by @botfather",
"value":"token"
},
"DOMAIN":{
"description": "enter your app name",
"value":"domain"
},
"DB_URL":{
"description": "get mongodb database url from https://www.mongodb.com/cloud/atlas with database name = mediaFile and collection name = fileBackup",
"value":"db"
},
"ADMIN":{
"description": "enter your id",
"value":"admin_id"
},
"CHANNEL_USERNAME":{
"description": "channel username without @",
"value":"channel"
},
"LOG_GROUP":{
"description": "private group id to get user search data",
"value":"group"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}