modarb-be / src /configs /database.ts
moahmedwafy's picture
feat: seeder
b76416f
raw
history blame contribute delete
256 Bytes
import mongoose from "mongoose";
import { config } from "./config";
export const connectDatabase = async () => {
return mongoose.connect(config.db.uri).then((o) => {
console.log(`Connected to MongoDB database successfully!`);
return o;
});
};