This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var ENV = process.env.NODE_ENV || 'local'; | |
var gulp = require('gulp'); | |
var gutil = require('gulp-util'); | |
var bower = require('bower'); | |
var concat = require('gulp-concat'); | |
var gulpif = require('gulp-if'); | |
var less = require('gulp-less'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var express = require('express'); | |
var morgan = require('morgan'); | |
var chalk = require('chalk'); | |
var app = express(); | |
var PORT = 8200; | |
// Log all requests |
NewerOlder