Skip to content

Instantly share code, notes, and snippets.

@mjhea0
Last active August 29, 2015 14:23
Show Gist options
  • Save mjhea0/e9024cd25ec60a149028 to your computer and use it in GitHub Desktop.
Save mjhea0/e9024cd25ec60a149028 to your computer and use it in GitHub Desktop.
var uri = process.env.MONGOLAB_URI || 'mongodb://localhost/test';
mongoose.connect(uri, function (err, res) {
if (err) {
console.log(err);
}
console.log ('success!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment