You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
515 B
JavaScript
18 lines
515 B
JavaScript
5 years ago
|
const config = require('./config')
|
||
|
const mongoose = require('mongoose')
|
||
|
const mongoOptions = {
|
||
|
useNewUrlParser: true,
|
||
|
useUnifiedTopology: true,
|
||
|
useFindAndModify: true,
|
||
|
dbName: config.mongodbName
|
||
|
}
|
||
|
mongoose.connect(config.mongodbURI, mongoOptions, (err) => {
|
||
|
if (!!err) process.exit(1)
|
||
|
console.log('CONNECTED TO MONGODB')
|
||
|
})
|
||
|
.catch(() => process.exit(2))
|
||
|
/*.then(() => {
|
||
|
GridFS.CONNECTION = mongoose.connection
|
||
|
})*/
|
||
|
const Models = require('./models')
|
||
|
module.exports = { mongoose, Models }
|