-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.json
35 lines (34 loc) · 999 Bytes
/
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": "lavalink server",
"description": "A Heroku app to deploy your own Lavalink server.",
"keywords": [
"Lavalink",
"lavalink",
"discord-music-streaming",
"lavalink-on-heroku"
],
"repository": "https://github.com/HellpMe/Lavalink-Heroku-24-7",
"env": {
"PASS": {
"description": "Set this for authorization for your lavalink server. default: youshallnotpass",
"value": "youshallnotpass"
},
"APP_NAME": {
"description": "The heroku app name to keep alive retype the 'App name'. Leave empty to disable internal pinging.",
"value": "your-app-name",
"required": false
},
"JAVA_TOOL_OPTIONS": {
"description": "Isso define a RAM para o máximo (não altere) esta variável`",
"value": "Xmx400m -Xms400m -XX:MaxPermSize=48m"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/java"
}
]
}