forked from BlackCraze/GameResourceBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
48 lines (48 loc) · 1.5 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
{
"name": "RessourceBot",
"description": "A Ressource Management Tool for Guilds",
"keywords": ["deeptown", "ressource management", "guild"],
"repository": "https://github.com/BlackCraze/GameResourceBot",
"addons": [
{
"plan": "heroku-postgresql"
}
],
"env": {
"GRB_DISCORD_TOKEN": {
"description": "This is the 'secret' from you 'App Bot User' you copied before.",
"value": "",
"required": "true"
},
"CHANNEL": {
"description": "The channel the bot will listen to on your discord server",
"value": "GuildRessourceBot",
"required": "false"
},
"LANGUAGE": {
"description": "Language for the ressources, currenlty 'en' or 'de' are valid values.",
"value": "en",
"required": "false"
},
"OCR_RESULT": {
"description": "If set to 'on' the bot will say tell you the result of the OCR",
"value": "on",
"required": "false"
},
"DELETE_PICTURE_MESSAGE": {
"description": "If set to 'on' the bot will delete the message with pictures right after it has scanned it",
"value": "off",
"required": "false"
},
"JAVA_TOOL_OPTIONS": {
"description": "Memory instructions so this project can run on a free heroku plan",
"value": "-Xms400m -Xmx400m -Xss512k -XX:MaxMetaspaceSize=80m",
"required": "true"
},
"TESS_DATA": {
"description": "Path for the tessdata files",
"value": "./target/tessdata",
"required": "true"
}
}
}