- Simple boilerplate to develop a MERN app
- What is MERN Stack?
- Mongo DB + Express.js + React.js + Node.js
- Register / login / logout / find & reset password
- Beautiful Material UI
In the server directory, you can find a folder named config
.
Make a file named dev.js
.
And type your settings as below:
module.exports = {
mongoURI:
"mongodb+srv://----YOUR-MONGODB-ATLAS-KEY----",
emailAddress: "----YOUR-GMAIL-ADDRESS----",
emailPassword: "----YOUR-MAIL-PASSWORD----",
};
email address will be used as a mail which sends password reset messages.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.