You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Create the MongoDB URI for development and test
constdatabase={
development: `mongodb://localhost:27017/
${mongooseBaseName}-development`,
test : `mongodb://localhost/${mongooseBaseName}-test`
}
// Identify if current environment is test or development
constlocalDB=process.env.TESTENV ? database.test : database.development;// like if else if TESTENV true so database.test if it false database.development
// Check if Environment variable MONGODB_URI is available