From 26a97625ac5a86561c11683019e35f2f6a45a456 Mon Sep 17 00:00:00 2001 From: TEEN-BOOM <51919967+TEEN-BOOM@users.noreply.github.com> Date: Thu, 18 Jun 2020 20:07:17 +0530 Subject: [PATCH] Create app.json Make deploy to heroku button which handles most of the stuff except automatic deploys. --- app.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..bfb431c --- /dev/null +++ b/app.json @@ -0,0 +1,28 @@ +{ + "name": "heroku-lavalink", + "description": "lavalink server", + "keywords":[ + "lavalink", + "wavelink", + "discord.py" + ], + "repository": "https://github.com/KareemRS/heroku-lavalink.git", + "env": { + "PASS": { + "description": "The password change this to whatever you want it to be.", + "value": "youshallnotpass" + }, + "JAVA_TOOL_OPTIONS": { + "description": "This sets the ram to max *don't edit* this variable", + "value": "-XX:+UseContainerSupport -Xmx500m -Xss256k -XX:CICompilerCount=2 -Dfile.encoding=UTF-8" + } + }, + "buildpacks": [ + { + "url": "heroku/nodejs" + }, + { + "url": "heroku/java" + } + ] +}