diff options
author | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-07-18 14:56:39 +0530 |
---|---|---|
committer | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-07-18 14:56:39 +0530 |
commit | 2f613682b733f8f03634df08270469830cad1800 (patch) | |
tree | bab1e0c7b19aa9538bbcb099d7e5b36c1f264528 /server/config | |
parent | 05faaf231620ce8d4ee67585bd86f1e97fd32eeb (diff) | |
download | admin-panel-2f613682b733f8f03634df08270469830cad1800.tar.gz admin-panel-2f613682b733f8f03634df08270469830cad1800.tar.bz2 admin-panel-2f613682b733f8f03634df08270469830cad1800.zip |
added the config and setup the basic auth
Diffstat (limited to 'server/config')
-rw-r--r-- | server/config/db.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/server/config/db.js b/server/config/db.js new file mode 100644 index 0000000..effbe5e --- /dev/null +++ b/server/config/db.js @@ -0,0 +1,14 @@ +const mongoose = require('mongoose') +const connecttDB = async () => { + try { + await mongoose.connect(process.env.MONGO_URI, { + useNewUrlParser: true, + useUnifiedTopology: true, + }); + console.log('MongoDB Connected...'); + } catch (err) { + console.error(err.message); + process.exit(1); + } +}; +module.exports = connectDB; |