This is a Heroku buildpack for Vert.x apps. Example application vertx-sample.
Currently it uses following versions:
- JDK 1.7
- Vert.x 2.0.2-final
This buildpack assumes that there are at least two files in repository:
mod.json
- used to determine if this is vert.x projectserver.js
- by default file that will be launched (of course this can be overrided by Procfile)
Example usage:
$ ls
mod.json server.js
$ heroku create --stack cedar --buildpack https://github.com/mthenw/heroku-buildpack-vertx.git
$ git push heroku master
-----> Fetching custom git buildpack... done
-----> Vert.x app detected
-----> Installing OpenJDK7u2..... done
-----> Installing Vert.x..... done
-----> Launching... done
This buildpack is based on tomaslin/heroku-buildpack-vertx-jdk7.
MIT