Home

Awesome

Julia 0.7.0-alpha buildpack for Heroku

This is a Heroku buildpack for adding a Julia binary to your environment.

Versions

Usage

Add this line to the .buildpacks file in your project:

https://github.com/wookay/heroku-buildpack-julia-07.git

or use the command heroku buildpacks:set

In your project, create a file package.jl with any Julia code you want to run after installation. E.g. to add Bukdu support:

using Pkg
Pkg.REPLMode.pkgstr("add HTTP#master")
Pkg.REPLMode.pkgstr("add https://github.com/wookay/Bukdu.jl.git#sevenstars")
using Bukdu