forked from Rushmaster12/alpha-md
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
130 lines (130 loc) · 3.39 KB
/
app.json
File metadata and controls
130 lines (130 loc) · 3.39 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "alpha@1.0.8",
"description": "simple multi featured whatsapp bot",
"keywords": ["whatsapp"],
"success_url": "/",
"stack": "container",
"env": {
"SESSION_ID": {
"description": "your ssid to run bot",
"required": true,
"value": ""
},
"HEROKU_API_KEY": {
"description": "For updating bot and setting vars remotely",
"required": true,
"value": ""
},
"HEROKU_APP_NAME": {
"description": "Exact name which you gave at the top",
"required": true,
"value": ""
},
"WORKTYPE": {
"description": "enter bot mode must be public/private",
"required": true,
"value": "public"
},
"BOT_INFO": {
"description": "baasic bot info config img url can be mp4 too",
"required": true,
"value": "alpha-md;C-iph3r;https://i.imgur.com/nXqqjPL.jpg"
},
"PREFIX": {
"description": "bot preifx ., [.,!], false",
"required": true,
"value": "[.,!]"
},
"AUDIO_DATA": {
"description": "audio metadata",
"required": true,
"value": "alpha-md;C-iph3r;https://i.imgur.com/nXqqjPL.jpg"
},
"STICKER_DATA": {
"description": "sticker data",
"required": true,
"value": "C-iph3r;alpha-md"
},
"PERSONAL_MESSAGE": {
"description": "personal greetings for first message ",
"required": true,
"value": "*👋 Hello there! 🤖 I'm alpha, i'm here to assist you while my owner is currently occupied. Don't worry, I'm equipped to help you out with whatever you need. Feel free to chat with me! 🚀✨*"
},
"REJECT_CALL": {
"description": "automatically reject calls",
"required": true,
"value": "false"
},
"WARNCOUNT": {
"description": "warn count for groups",
"required": true,
"value": "3"
},
"SUDO": {
"description": "add other numbers here separated by a comma(,) eg 2348114xxxx,234913798xxxx...",
"required": true,
"value": ""
},
"AJOIN": {
"description": "automatically join to all group invites",
"required": true,
"value": "false"
},
"SAVE_STATUS": {
"description": "save all status message",
"required": true,
"value": "false"
},
"STATUS_VIEW": {
"description": "status views, values= true,only-view=jid, not-view=jid",
"required": true,
"value": "true"
},
"ERROR_MSG": {
"description": "send error messages to bot number",
"required": true,
"value": "true"
},
"RMBG_KEY": {
"description": "remove.bg API key",
"required": false,
"value": ""
},
"OPEN_AI": {
"description": "OpenAI API key",
"required": false,
"value": ""
},
"ELEVENLABS": {
"description": "Eleven Labs API key",
"required": false,
"value": ""
},
"ALPHA_KEY": {
"description": "Alpha API key (get it from https://api.alpha-md.rf.gd/signup)",
"required": true,
"value": ""
},
"OCR_KEY": {
"description": "OCR API key",
"required": true,
"value": "K84003107488957"
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git"
}
]
}