Skip to content

Instantly share code, notes, and snippets.

@jestho
Last active August 29, 2015 14:07
Show Gist options
  • Save jestho/050513db08939f652d36 to your computer and use it in GitHub Desktop.
Save jestho/050513db08939f652d36 to your computer and use it in GitHub Desktop.
Dokku Grunt
unsafe-perm = true
source "https://rubygems.org"
gem 'compass', ">= 1.0.0.alpha.20"
gem 'sass', ">=3.3.6"
{
"scripts": {
"bundler": "bundle install",
"bower": "./node_modules/bower/bin/bower install --allow-root",
"grunt": "./node_modules/grunt-cli/bin/grunt build",
"postinstall": "npm run bundler && npm run bower && npm run grunt"
}
}
web: node web.js
var express = require('express');
var app = express();
app.use(express.static(__dirname + '/dist'));
app.listen(process.env.PORT || 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment