├── .gitignore ├── README.md ├── bin ├── compile ├── detect └── release ├── compile-test.sh ├── detect-test.sh └── test-app ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── bin └── basic_http_server.dart ├── pubspec.yaml └── web ├── index.dart └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | packages 2 | .DS_Store 3 | pubspec.lock 4 | build 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/README.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/bin/detect -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/bin/release -------------------------------------------------------------------------------- /compile-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/compile-test.sh -------------------------------------------------------------------------------- /detect-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/detect-test.sh -------------------------------------------------------------------------------- /test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/test-app/.gitignore -------------------------------------------------------------------------------- /test-app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/test-app/LICENSE -------------------------------------------------------------------------------- /test-app/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/test-app/Procfile -------------------------------------------------------------------------------- /test-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/test-app/README.md -------------------------------------------------------------------------------- /test-app/bin/basic_http_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/test-app/bin/basic_http_server.dart -------------------------------------------------------------------------------- /test-app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/test-app/pubspec.yaml -------------------------------------------------------------------------------- /test-app/web/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/test-app/web/index.dart -------------------------------------------------------------------------------- /test-app/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/heroku-buildpack-dart/HEAD/test-app/web/index.html --------------------------------------------------------------------------------