donal
2018-03-31 6a748c6a26acf616b67001fae0f09a3f82760c39
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict';
 
// Development specific configuration
// ==================================
module.exports = {
  // MongoDB connection options
  mongo: {
    uri: 'mongodb://localhost/todolist-dev'
  },
  mocks: {
    // enable this for non mock api
    // api: true
    api: false
  },
  seedDB: true
};