Skip to content

kohlikohl/heroku-buildpack-dart

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Heroku Buildpack: Dart

This is a Heroku buildpack for Dart.

Installation of packages through pub is supported.

Getting Started

$> heroku create myapp_name -s cedar
$> heroku config:add BUILDPACK_URL=https://github.com/igrigorik/heroku-buildpack-dart.git

# create your app, see test-app for an example

$> git push heroku master

-----> Heroku receiving push
-----> Fetching custom buildpack... done
-----> Dart app detected
-----> Installing Dart VM, build: latest
-----> Copy Dart binaries to app root
-----> Install packages
.
[...]
.
-----> Discovering process types
       Procfile declares types -> web
-----> Compiled slug size is 10.5MB
-----> Launching... done, v1

$> curl http://myapp_name.herokuapp.com/

Configuration

You can specify the version of the dart-sdk that should be used by

$> heroku config:set BUILD=<version number>

A list of versions can be found here

In order for the build version to come through in to the build pack you also need to set an experimental flag on Heroku

$> heroku labs:enable user-env-compile

More info on that can be found in Heroku's Devcenter: Heroku Labs: user-env-compile

See test-app directory for the world simplest Dart web app running on Heroku: dartvm.herokuapp.com

License

The MIT License - Copyright (c) 2012 Ilya Grigorik

About

Heroku buildpack for Dart

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 78.9%
  • Dart 21.1%