forked from jkutner/heroku-buildpack-minecraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
42 lines (42 loc) · 1005 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
36
37
38
39
40
41
42
{
"name": "Minecraft",
"description": "A Minecraft Server on Heroku",
"keywords": [
"games",
"minecraft"
],
"repository": "https://github.com/jkutner/heroku-buildpack-minecraft",
"env": {
"MINECRAFT_EULA": {
"description": "Do you accept the Minecraft EULA?",
"value": "true"
},
"NGROK_API_TOKEN": {
"description": "Your personal ngrok API token",
"required": true
},
"AWS_BUCKET": {
"description": "S3 Bucket to store your server state (you will lose your games when the server restarts if you don't do this)",
"required": false
},
"AWS_ACCESS_KEY": {
"description": "The AWS access key for the S3 Bucket",
"required": false
},
"AWS_SECRET_KEY": {
"description": "The AWS secret key for the S3 Bucket",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "heroku/jvm"
},
{
"url": "heroku-community/inline"
}
]
}