donal
2018-04-12 de3be129a09b9f4c230605bfb7347e1480941045
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict';
 
// Test specific configuration
// ===========================
module.exports = {
  // MongoDB connection options
  //  TODO change this to the new service in the OpenShift namespace
  mongo: {
    uri: 'mongodb://username:password@' + process.env.MONGODB_SERVICE_HOST + ':' + process.env.MONGODB_SERVICE_PORT + '/todolist',
  },
  mocks: {
    // api: true
    api: false
  },
  seedDB: true
};