fixing conflicts merging dev into this

This commit is contained in:
knighthawk4227 committed 2025-05-08 10:40:31 -07:00
commit 7a5d2e7490
53 files changed
+1191 -64

No files matched your search

+2 -3
View File
@@ -7,12 +7,11 @@ const bcrypt = require('bcrypt');
const joi = require('joi');
require('dotenv').config();
const app = express();
const port = process.env.PORT || 3000;
const mongoURI = process.env.mongoURI || "mongodb://localhost:27017/";
const database = process.env.database || "knoldus"; // Database name
const mongoURI = process.env.mongoURI;
const database = process.env.database; // Database name
const secret = process.env.secret || "123-secret-xyz";
/*** Sessions ***/