-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.json
59 lines (54 loc) · 1.39 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
{
"name": "DisOwen ",
"description": "The world first Discord Userbot",
"repository": "https://github.com/Ber4tbey/disowen",
"logo": "https://i.hizliresim.com/60dgunt.jpg",
"keywords": ["node", "discord", "owen"],
"stack": "container",
"env": {
"BOT_TOKEN": {
"description": "Bot tokeni nasıl alındığını bilmiyorsanız kurulum videosunu izleyin.",
"required": "true"
},
"PREFIX": {
"description": "Botun komutları algılaması için komut başlangıcı.",
"value": "."
},
"LANGUAGE": {
"description": "Botunuzun dili (EN/TR/US)",
"required": "true",
"value": "TR"
},
"HEROKU_API_KEY": {
"description": "Heroku api keyiniz.",
"required": "true",
"value": ""
},
"HEROKU_APP_NAME": {
"description": "heroku app name",
"required": "true",
"value": ""
},
"STATUS": {
"description": "Account status : online|dnd|idle|invisible",
"required": "true",
"value": "online"
},
"BOTLOG": {
"description": "Botlog mode true/false",
"required": "true",
"value": "false"
},
"BOTLOG_CHATID": {
"description": "Botlog chat ıd",
"required": "true",
"value": "0"
}
},
"addons": [{
"plan": "heroku-postgresql"
}],
"buildpacks": [{
"url": "heroku-community/apt"
}]
}