donal
2018-04-12 de3be129a09b9f4c230605bfb7347e1480941045
server/config/environment/ci.js
@@ -4,12 +4,13 @@
// ===========================
module.exports = {
  // MongoDB connection options
  //  TODO change this to the new service in the OpenShift namespace
  mongo: {
    uri: 'mongodb://mongo.server/todolist-ci'
    uri: 'mongodb://username:password@' + process.env.MONGODB_SERVICE_HOST + ':' + process.env.MONGODB_SERVICE_PORT + '/todolist',
  },
  mocks: {
    api: true
    // api: true
    api: false
  },
  seedDB: true,
  port: process.env.PORT || 9001
  seedDB: true
};