forked from cBioPortal/cbioportal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
39 lines (39 loc) · 1.54 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
{
"name": "cBioPortal",
"description":"The cBioPortal for Cancer Genomics provides visualization, analysis and download of large-scale cancer genomics data sets.",
"repository":"https://github.com/cbioportal/cbioportal",
"logo":"https://www.cbioportal.org/images/cbioportal_logo.png",
"keywords": [
"java",
"tomcat",
"javascript",
"cancer",
"genomics"
],
"env": {
"JAVA_OPTS": {
"description":"options for jvm",
"value": "-Xmx300m -Xms300m -XX:+UseCompressedOops"
},
"MAVEN_CUSTOM_OPTS": {
"description":"set heroku profile for mvn",
"value":"-Pheroku,public -DskipTests -Dtomcat.catalina.scope=runtime -Dfinal.war.name=cbioportal"
},
"SPRING_OPTS": {
"description":"set spring properties with e.g. -Dshow.civic=true (TODO: not all props work atm)",
"value":"-Dauthenticate=false -Dtomcat.catalina.scope=runtime -Ddb.user=cbio_user -Ddb.password=cbio_pass -Ddb.portal_db_name=cgds_public -Ddb.connection_string=jdbc:mysql://devdb.cbioportal.org:3306/ -Ddb.host=devdb.cbioportal.org -Dshow.civic=true -Dsuppress_schema_version_mismatch_errors=true -Dsession.service.url=https://cbioportal-session-service.herokuapp.com/session_service/api/sessions/heroku_portal/"
},
"WEBAPP_RUNNER_OPTIONS": {
"description":"set webapp runner options",
"value":"--enable-compression"
}
},
"buildpacks": [
{
"url": "https://github.com/inodb/cbioportal-buildpack"
},
{
"url": "https://github.com/heroku/heroku-buildpack-java"
}
]
}