Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 470 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 470 Bytes

Todo-App

Simple Full Stack Todo-App App created using MERN stack

Installing

  1. Install dependencies

    In the root folder run the following code

npm run install-backend
npm run install-client
  1. Update keys.js file at /backend/config/ with your details:
module.exports = {
    mongoURI: "Your MongoDb Connection String",
    secretOrKey: "YourSecretKey"
  };
  1. Run project
npm run backend-dev
npm run frontend-dev