1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-04 21:30:05 +00:00
Files
server/api/src/utils/connectDB.ts
2022-04-24 04:16:13 +05:00

26 lines
575 B
TypeScript

import mongoose from 'mongoose'
import { seedDB } from './seedDB'
export const connectDB = async () => {
// NOTE: when exporting app.js as agent for supertest
// we should exclude connecting to the real database
if (process.env.NODE_ENV === 'test') {
return
}
const { MODE } = process.env
if (MODE?.trim() !== 'server') {
console.log('Running in Destop Mode, no DB to connect.')
return
}
mongoose.connect(process.env.DB_CONNECT as string, async (err) => {
if (err) throw err
console.log('Connected to db!')
await seedDB()
})
}