Skip to content

Instantly share code, notes, and snippets.

@outrightmental
outrightmental / .travis.yml
Created March 31, 2014 00:10
My best attempt to integrate Travis CI to deploy /dist folder to Heroku
#
# Travis CI > Heroku
# deploy /dist folder
#
# author: Nick Kaye
# laboratory: Outright Mental Inc.
#
# NOTES:
# Heroku & Compass CLI in Gemfile for Bundler
# Bower & Grunt CLI in Package.json for Npm
@outrightmental
outrightmental / FAIL bower.json
Last active August 29, 2015 13:58
ENOENT during "bower install" on CI [ubuntu]
{
"...",
"dependencies": {
"angular-bootstrap": "~0.10.0",
"angular-cookies": "~1.3",
"angular-flash": "~0.1",
"angular-resource": "~1.3",
"angular-route": "~1.3",
"angular-sanitize": "~1.3",
"angulartics": "~0.14",
@outrightmental
outrightmental / app.js
Created July 22, 2014 05:23
Node.js & Express configuration from [email protected]
/**
* Main application file
*/
'use strict';
// Set default node environment to development
process.env.NODE_ENV = process.env.NODE_ENV || 'development';
var express = require('express');