-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.js
31 lines (29 loc) · 934 Bytes
/
db.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
var debug = require('debug')('db'),
conf = require('app-container-conf'),
mongoose = require('mongoose'),
_ = require('lodash');
mongoose.Promise = require('q').Promise;
module.exports = function(next /* optional */){
if(mongoose.connection.readyState) {
debug('Already connected to MongoDb');
return (next||_.noop)();
}
var config = _.extend({
host: 'localhost',
port: 27017,
db: 'app-db'
},require('app-container-conf').get('database'));
config.uri = 'mongodb://'+config.host+':'+config.port+'/'+config.db;
debug('Attempting connection to "%s"',config.uri);
mongoose.connect(config.uri,config.options).then(function(err) {
debug('Connected to MongoDb');
(next||_.noop)();
},function(err){
if(next) {
next(err);
} else {
console.error(err);
process.exit(1);
}
});
};