-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathapp.json
35 lines (34 loc) · 1.08 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
{
"name": "heroku-lavalink",
"description": "lavalink server",
"keywords":[
"lavalink",
"wavelink",
"discord.py",
"discord.js"
],
"repository": "https://github.com/KareemRS/heroku-lavalink.git",
"env": {
"PASS": {
"description": "The password you will use to authenticate http requests. Change this to whatever you want it to be.",
"value": "youshallnotpass"
},
"APP_NAME": {
"description": "Set this to your heroku application's name. This will allow the project to visit itself and prevent it from sleeping.",
"value": "",
"required": false
},
"JAVA_TOOL_OPTIONS": {
"description": "This sets the ram to max. *Don't edit* this variable unless you know what you're doing.",
"value": "-XX:+UseContainerSupport -Xmx500m -Xss256k -XX:CICompilerCount=2 -Dfile.encoding=UTF-8"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/java"
}
]
}