Skip to content

Commit

Permalink
Default to aggrgate:false in development env
Browse files Browse the repository at this point in the history
  • Loading branch information
liorkesos committed Nov 26, 2014
1 parent 1bccf3e commit 92937f8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions config/env/development.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
'use strict';

module.exports = {
db: 'mongodb://localhost/mean-dev1',
db: 'mongodb://localhost/mean-dev',
debug: true,
aggregate: 'whatever that is not false, because boolean false value turns aggregation off', //false
// aggregate: 'whatever that is not false, because boolean false value turns aggregation off', //false
aggregate: false,
mongoose: {
debug: false
},
Expand Down

0 comments on commit 92937f8

Please sign in to comment.