Instructions Add the ".env" file to the project directory Run below commands one by one from the project directory to install the packages npm install npm run install-client App deployment options (all commands should run from the project directory) To run the "front-end" alone npm run client To run the "back-end" alone npm run server 2. To run the full application npm run dev 3. To run tests npm test 4. To run a specific test file npm test -- bar.test.js 5. To re-generate the test coverage npm test -- --coverage