Skip to content

Instantly share code, notes, and snippets.

View oscar-g's full-sized avatar

Oscar Gonzalez oscar-g

  • Hinge Health
  • Denver, CO
View GitHub Profile
@oscar-g
oscar-g / .gitignore
Last active August 29, 2015 14:05
deploy a webfaction.com Node application using Git
# we'll ignore webfaction's node and npm
# but we'll keep bin/start and bin/stop
node_modules/
lib/npm/
bin/node
bin/npm
#ignore the process number file too
run/
@oscar-g
oscar-g / gulpfile.js
Created October 10, 2015 18:14
React js dev workflow gulp file
var gulp = require('gulp'),
source = require('vinyl-source-stream'),
browserify = require('browserify'),
watchify = require('watchify'),
gulpif = require('gulp-if'),
uglify = require('gulp-uglify'),
streamify = require('gulp-streamify'),
notify = require('gulp-notify'),
concat = require('gulp-concat'),
gutil = require('gulp-util'),