/heroku-buildpack-nodejs-gulp-bower

A slightly modified version of Heroku's official Node.js buildpack with added gulp.js support

Primary LanguageShellMIT LicenseMIT

Heroku Buildpack for node/bower/gulp

IMPORTANT: This is a fork of https://github.com/krry/heroku-buildpack-nodejs-gulp-bower.git. Heroku's s3pository was deprecated and no longers exists... and this fork was a bandaid to get things fixed quickly.

DO NOT USE THIS BUILDPACK.... it will not be maintained.

Setup

  1. Install the Heroku Toolbelt.
  2. On the command line, set your app's buildpack URL to target this repository:
heroku config:set BUILDPACK_URL=https://github.com/krry/heroku-buildpack-nodejs-gulp-bower.git
  1. Set the NODE_ENV to an environment name of your choice:
heroku config:set NODE_ENV={{env}} // I like to keep my `env` names short, e.g., "prod", "stage", "test", "int", "dev"
  1. Allow the Heroku instance to install devDependencies stored in your package.json as heroku recommends.
heroku config:set NPM_CONFIG_PRODUCTION=false
  1. For each environment name, add a Gulp task named heroku:{{env}} that builds the app for that environment.
var gulp = require('gulp');

gulp.tasks('heroku:prod', [default]);

Credits