Created
September 17, 2015 07:36
-
-
Save munro/cf7a73887635cf2323d5 to your computer and use it in GitHub Desktop.
This file contains 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
var config = require('./config'); |
This file contains 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
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')); | |
} |
This file contains 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
exports.override = 'stuff here!'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment