Simple Full Stack Todo-App App created using MERN stack
-
Install dependencies
In the root folder run the following code
npm run install-backend
npm run install-client
- Update keys.js file at /backend/config/ with your details:
module.exports = {
mongoURI: "Your MongoDb Connection String",
secretOrKey: "YourSecretKey"
};
- Run project
npm run backend-dev
npm run frontend-dev