-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.json
46 lines (46 loc) · 1.22 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
{
"name": "PriceTrackerBot",
"env": {
"API_ID": {
"description": "your app id, take it from my.telegram.org",
"value": ""
},
"API_HASH": {
"description": "your app Hash, take it from my.telegram.org",
"value": ""
},
"BOT_TOKEN": {
"description": "Bot Token From @botFather",
"value": ""
},
"MONGO_URI": {
"description": "Database URI from mongodb.com",
"value": ""
},
"DATABASE": {
"description": "Database Name",
"value": ""
},
"COLLECTION": {
"description": "Collection Name",
"value": ""
},
"PRODUCTS": {
"description": "Collection Name",
"value": ""
},
"PRICE_CLASS": {
"description": "Class name from Flipkart.com for scraping the Product",
"value": "_30jeq3 _16Jk6d"
},
"PRODUCT_NAME_CLASS": {
"description": "Class name from Flipkart.com for scraping the Product",
"value": "B_NuCI"
}
},
"buildpacks": [
{
"url": "heroku/python"
}
]
}