forked from scala-exercises/scala-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
30 lines (30 loc) · 932 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
{
"name": "Scala Exercises",
"description": "Introducing Scala Exercises: Quick lessons that will get you on your way to learning Scala in no time.",
"website": "http:\/\/www.scala-exercises.org",
"addons": [
"heroku-postgresql:hobby-dev"
],
"success_url": "\/",
"env": {
"WARTING": "false",
"FORMATCODE": "false",
"BUILDPACK_URL": "https:\/\/github.com\/heroku\/heroku-buildpack-multi",
"JAVA_OPTS": "-Xmx768m -Xss512k -XX:+UseCompressedOops",
"JAVA_TOOL_OPTIONS": "-Xmx768m -Xss512k -XX:+UseCompressedOops",
"EVALUATOR_AUTH_KEY": {
"required": true
},
"EVALUATOR_URL": {
"required": true
},
"EVOLUTIONS_AUTO_APPLY" : "true",
"EVOLUTIONS_AUTO_APPLY_DOWNS" : "true"
},
"formation": {
"web": {
"quantity": 1,
"size": "performance-m"
}
}
}