forked from adisubagja/WhatsGram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
67 lines (67 loc) · 1.67 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "WhatsGram",
"description": "Yet another userbot for WhatsApp.",
"keywords": ["WhatsApp", "Telegram", "Userbot", "NodeJs"],
"repository": "https://github.com/WhatsGram/WhatsGram",
"website": "https://t.me/AffanTheBest",
"scripts": {
"worker": "npm start"
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://buildpack-registry.s3.amazonaws.com/buildpacks/jontewks/puppeteer.tgz"
}
],
"env": {
"TG_OWNER_ID": {
"description": "Your telegram ID.",
"value": "",
"required" : true
},
"TG_BOT_TOKEN": {
"description": "Your telegram bot token. Get it from https://t.me/BotFather",
"value": "",
"required" : true
},
"REMOVE_BG_API": {
"description": "Remove.bg API key. Get it from https://remove.bg",
"value": ""
},
"SESSION_DATA" : {
"description": "Puppeteer Session. Set it after succesfully deploying bot.",
"value": "",
"required": false
},
"HEROKU_APP_NAME":{
"description": "Heroku app name on which WhatsGram is deployed.",
"value": "",
"required": true
},
"HEROKU_API_KEY":{
"description": "Heroku API key. Get it from https://dashboard.heroku.com/account",
"value": "",
"required": true
},
"DB_URL":{
"description": "Mongo db database URL. Get it from https://cloud.mongodb.com",
"value": ""
},
"PMGUARD_ENABLED":{
"description": "Put true to enable Pm Guard. default is false",
"value": "false"
}
},
"formation": {
"web": {
"quantity": 0
},
"worker":{
"quantity": 1,
"size": "free"
}
},
"addons": []
}