11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
module.exports = {
|
|
defaults: {
|
|
uri: 'mongodb://localhost/changeThisFool'
|
|
//uri: 'mongodb://user:password@tcb01.thecodebureau.com/changeThisFool'
|
|
},
|
|
development: {
|
|
//uri: 'mongodb://user:password@tcb01.thecodebureau.com/changeThisFoolDev'
|
|
uri: 'mongodb://localhost/changeThisFoolDev'
|
|
}
|
|
};
|