Skip to content

Commit

Permalink
feat: Update MongoDB connection URL for session store.
Browse files Browse the repository at this point in the history
  • Loading branch information
BunyaminYavuz committed Mar 24, 2024
1 parent e6e7036 commit 24776c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ app.use(
resave: false,
saveUninitialized: true,
store: MongoStore.create({
mongoUrl: 'mongodb://localhost/smart-education-db',
mongoUrl: process.env.DB_URL,
}),
})
);
Expand Down

0 comments on commit 24776c3

Please sign in to comment.