Skip to content

Instantly share code, notes, and snippets.

@munro
Created September 17, 2015 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save munro/cf7a73887635cf2323d5 to your computer and use it in GitHub Desktop.
Save munro/cf7a73887635cf2323d5 to your computer and use it in GitHub Desktop.
var config = require('./config');
var _ = require('lodash'),
fs = require('fs');
exports.server_host = process.env.SERVER_HOST || 'localhost';
if (require('fs').existsSync('./local.config.js')) {
_.extend(exports, require('./local.config.js'));
}
exports.override = 'stuff here!';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment