Skip to content

Commit

Permalink
fix: Move mongo connection config inside of connections object
Browse files Browse the repository at this point in the history
  • Loading branch information
MIGUELez11 authored Oct 3, 2023
1 parent 15bfcdf commit 29befcb
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions docs/getting-started/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -216,23 +216,23 @@ module.exports = {
},
},
},
},
mongo: {
connector: 'mongoose',
settings: {
database: 'leemons',
authDatabase: 'admin',
username: 'leemons',
password: 'leemons',
port: 27017,
host: 'localhost',
srv: false,
pool: {
min: 5,
max: 1000
mongo: {
connector: 'mongoose',
settings: {
database: 'leemons',
authDatabase: 'admin',
username: 'leemons',
password: 'leemons',
port: 27017,
host: 'localhost',
srv: false,
pool: {
min: 5,
max: 1000
}
}
}
}
},
},
defaultConnection: 'mysql',
};
```
Expand Down

0 comments on commit 29befcb

Please sign in to comment.