init commit

This commit is contained in:
2025-07-07 00:52:41 +05:30
commit 2dd24927bc
81 changed files with 10274 additions and 0 deletions

13
backend/config/db.js Normal file
View File

@ -0,0 +1,13 @@
const mongoose = require("mongoose");
const connectDB = async () => {
try {
await mongoose.connect(process.env.MONGO_URI, {});
console.log("MongoDB connected");
} catch (err) {
console.error("Error connecting to MongoDB", err);
process.exit(1);
}
};
module.exports = connectDB;