Skip to content

Instantly share code, notes, and snippets.

@runcom
Created March 7, 2013 20:28
Show Gist options
  • Save runcom/5111540 to your computer and use it in GitHub Desktop.
Save runcom/5111540 to your computer and use it in GitHub Desktop.
var config = module.exports = {};
config.port = 61337;
config.secret = '076ee61d63aa10a125ea872411e433b9';
config.mongo = {};
config.mongo.uri = process.env.MONGO_URI || 'localhost';
config.mongo.port = 27017; //optional
config.mongo.user = 'user'; //optional
config.mongo.pass = 'pass'; //optional
config.mongo.db = 'blog';
module.exports = config;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment