-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathapp.json
More file actions
48 lines (48 loc) · 1.67 KB
/
app.json
File metadata and controls
48 lines (48 loc) · 1.67 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
{
"name": "ResourceBot",
"description": "A Resource Management Tool for Discord Guilds",
"keywords": ["deeptown", "deep town", "resource management", "guild"],
"repository": "https://github.com/BlackCraze/GameResourceBot",
"addons": [
{
"plan": "heroku-postgresql"
}
],
"env": {
"GRB_DISCORD_TOKEN": {
"description": "Copy your Token from Discord's developer area. Paste it here.",
"value": "",
"required": "true"
},
"CHANNEL": {
"description": "Enter the name of your bot's channel on your Discord server, WITHOUT THE #",
"value": "GuildResourceBot",
"required": "false"
},
"LANGUAGE": {
"description": "This will be your bot's default language for the guild. [de, en, pt]",
"value": "en",
"required": "false"
},
"OCR_RESULT": {
"description": "After it processes a screenshot, the bot will list the results so you can verify they are correct. If you change this to 'off', it won't.",
"value": "on",
"required": "false"
},
"DELETE_PICTURE_MESSAGE": {
"description": "If you change this to 'on', the bot will delete a screenshot after it processes it.",
"value": "off",
"required": "false"
},
"JAVA_TOOL_OPTIONS": {
"description": "Memory instructions so this project can run on a free Heroku plan - DO NOT CHANGE!!",
"value": "-Xms400m -Xmx400m -Xss512k -XX:MaxMetaspaceSize=80m",
"required": "true"
},
"TESS_DATA": {
"description": "Path for the tessdata files - DO NOT CHANGE!!",
"value": "./target/tessdata",
"required": "true"
}
}
}