forked from TOXIC-DEVIL/Leon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
45 lines (45 loc) · 1.3 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
{
"name": "Leon",
"description": "WhatsApp bot.",
"logo": "https://i.ibb.co/wNCbpry/20240101-130819.jpg",
"repository": "https://github.com/TOXIC-DEVIL/Leon",
"stack": "container",
"env": {
"SESSION": {
"description": "Enter your session.",
"required": true
},
"PREFIX": {
"description": "Enter a prefix.",
"required": true,
"value": "!"
},
"PLATFORM": {
"description": "Enter the platform in which you are deploying.",
"required": true,
"value": "heroku"
},
"HEROKU_APP_NAME": {
"description": "Enter the same app name which you gave above.",
"required": true
},
"HEROKU_API_TOKEN": {
"description": "Paste your heroku api token here from https://dashboard.heroku.com/account/",
"required": true
},
"ADMINS": {
"description": "Enter numbers with countrycode of whom you want to give usage access of Leon.",
"required": false
},
"DATABASE_URL": {
"description": "Enter your postgresql connection string. ( AutoGenerated )",
"required": false
},
"RBG_APIKEY": {
"description": "Enter removebg apikey from https://remove.bg/",
"required": false
}
},
"addons": [{ "plan": "heroku-postgresql" }],
"buildpacks": [{ "url": "heroku-community/apt" }]
}