-
Notifications
You must be signed in to change notification settings - Fork 130
/
app.json
86 lines (86 loc) · 2.13 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "whatsapp-bot-md",
"description": "nodejs whatsapp bot",
"logo": "https://i.ibb.co/sWmwD0k/e0bslrup.jpg",
"repository": "https://github.com/jacktheboss220/WhatsAppBotMultiDevice",
"keywords": [
"whatsapp-bot",
"instagram",
"multi-device",
"whatsapp",
"bot",
"whatsapp-bot-multi-device",
"whatsapp-bot-md",
"whatsapp-bot-multi-device"
],
"env": {
"PREFIX": {
"description": "Bot Prefix to use before commands",
"required": true
},
"MONGODB_KEY": {
"description": "MongoDB Key to store data",
"required": true
},
"MY_NUMBER": {
"description": "Your WhatsApp Number to use as bot owner",
"required": true
},
"BOT_NUMBER": {
"description": "Your WhatsApp Bot Number to use as bot",
"required": true
},
"REMOVE_BG_KEY": {
"description": "Remove.bg API key",
"required": false
},
"DEEPAI_KEY": {
"description": "Deepai.org API key",
"required": false
},
"TRUECALLER_ID": {
"description": "Truecaller API ID",
"required": false
},
"GOOGLE_API_KEY": {
"description": "Google API Key",
"required": false
},
"SEARCH_ENGINE_KEY": {
"description": "Google Search Engine Key",
"required": false
},
"OPENAI_API_KEY": {
"description": "OpenAI API Key",
"required": false
},
"GENIUS_ACCESS_SECRET": {
"description": "Genius Access Secret",
"required": false
},
"HOST_URL": {
"description": "Host URL",
"required": false
},
"HEROKU_API_TOKEN": {
"description": "Heroku API Token",
"required": true
},
"HEROKU_APP_NAME": {
"description": "Heroku App Name",
"required": true
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs#latest"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{
"url": "https://github.com/heroku/heroku-buildpack-python.git"
}
],
"addons": []
}