-
Notifications
You must be signed in to change notification settings - Fork 138
/
app.json
45 lines (44 loc) · 1.37 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": "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
},
"PRERELEASES": {
"description": "Whether to download lavalink prereleases.",
"value": "true",
"required": false
},
"GITHUB_REPO": {
"description": "The github repo to fetch releases from.",
"value": "freyacodes/Lavalink",
"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": "-Xmx400m -Xms400m -XX:MaxPermSize=48m"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/java"
}
]
}