Skip to content

carchrae/heroku-buildpack-vertx-jdk7

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

Heroku buildpack: Vert.x

This is a Heroku buildpack for Vert.x apps.

It was forked from blalor but I've changed it quite a bit. This version uses vert.x.1.3.1.final and also uses the 'heroku way' of including JDK7 (taken from current buildpacks). I also disabled the detect feature that inflicts a particular naming strategy on your app. You now need a Procfile that runs vertx how you want to.

The resulting slug for a minimal app is reasonable at around 54mb.

Usage

Example usage:

$ heroku create --buildpack https://github.com/carchrae/heroku-buildpack-vertx-jdk7.git

or if you want to add it after you create an app

$ heroku config:add BUILDPACK_URL=https://github.com/carchrae/heroku-buildpack-vertx-jdk7

You must create a Procfile that calls vertx, such as:

Procfile:

    web: .vertx/bin/vertx run Main.java

or to run a module based app:

Procfile:

    web: .vertx/bin/vertx runmod app -repo vert-x.github.io  

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 100.0%