Skip to content

Commit

Permalink
Merge pull request #69 from inodb/add-heroku
Browse files Browse the repository at this point in the history
Enable heroku deployment
  • Loading branch information
inodb authored Mar 1, 2018
2 parents cb56649 + ee3fe86 commit 860abf8
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: SERVER_PORT=${PORT} java $JAVA_OPTS -jar webapp/target/*.jar
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Cancerhotspots
A resource for statistically significant mutations in cancer:
[cancerhotspots.org](http://cancerhotspots.org).

## Deploy
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
33 changes: 33 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "cancerhotspots",
"description":"a resource for statistically significant mutations in cancer",
"repository":"https://github.com/cBioPortal/cancerhotspots",
"keywords": [
"java",
"tomcat",
"javascript",
"cancer",
"genomics",
"hgvs",
"cancerhotspots",
"variants",
"genes"
],
"env": {
"JAVA_OPTS": {
"description":"options for jvm",
"value": "-Xmx300m -Xms300m -XX:+UseCompressedOops"
},
"MAVEN_CUSTOM_OPTS": {
"description":"set options for mvn",
"value":"-DskipTests -PproductionPublic,jarSingle"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-java"
}
],
"addons" : [
]
}

0 comments on commit 860abf8

Please sign in to comment.