forked from Fortunatusmokaya/dreaded-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
67 lines (67 loc) · 2.99 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": "DREADED V3",
"description": "This is a simple WhatsApp bot built with Node.js and Baileys with MD support.",
"keywords": [
"bot",
"whatsapp",
"dreaded",
"whatsapp-bot",
"baileys",
"md-bot"
],
"website": "https://github.com/Fortunatusmokaya/dreaded-v3#readme",
"repository": "https://github.com/Fortunatusmokaya/dreaded-v3",
"logo": "https://telegra.ph/file/d6dab955fbaa42fce2280.jpg",
"success_url": "/",
"env": {
"SESSION": {
"description": "Paste the session id that you received in WhatsApp after linking the bot. It's used for authentication.",
"required": true
},
"MONGO_URI": {
"description": "Enter the MongoDB URI connection string for the bot's database. We have provided a public database for purposes of testing. We DO NOT RECOMMEND using of this public database at all, it is for testing. An example is:- If one person using this URL decides to switch autoread on, all bot using that URL will also switch autoread on. Sign up at mongodb.com to get your own URL to avoid this conflicts.",
"value": "mongodb+srv://nestorrice72:spyke@spiketech.xmqub.mongodb.net/?retryWrites=true&w=majority&appName=spiketech",
"required": true
},
"CODE": {
"description": "Enter your country code without +. Example: 254 for Kenya. This will allow the bot to detect and remove foreigners if commanded.",
"required": true
},
"BOTNAME": {
"description": "Enter the name for your bot.",
"required": true
},
"GEMINI_API_KEY": {
"description": "This API key used for integrating gemini services. To use AI you will need this key. It is also used to handle private messages in DND. We provided a free public key meanwhile.",
"value": "AIzaSyC3sNClbdraGrS2ubb5PTdnm_RbUANtdzc",
"required": false
},
"OTHER_CONTACT": {
"description": "This is the alternate contact number the bot will provide when Do Not Disturb (DND) is active. You can use your bot number or another if available. It ensures people can still reach you. Please enter only one number with no spaces.",
"required": true
},
"MYNAME": {
"description": "The name the bot will use to refer to you during DND mode, ensuring users know how to address you.",
"required": true
},
"HEROKU_APP_NAME": {
"description": "Re-enter the same app name you provided earlier. This will be used for auto-deployment. Example: 'minemain'.",
"required": false
},
"HEROKU_API_KEY": {
"description": "This is your Heroku API key. To enable auto-deployment, you must provide this key. You can get it by logging into your Heroku account, going to 'Account Settings', and clicking 'Reveal API Key'. Copy and paste it here.",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}
]
}