CI link example for Milestone 1: URL link
To install the project dependencies, run this command in your terminal:
npm installTo run the application in development mode, execute:
npm run devTo run both frontend and backend tests, execute:
npm run testBelow are the commands to run the tests independently:
npm run test:frontend
npm run test:backendBelow are the commands to run the integration tests independently:
npm run test:frontend-integration
npm run test:backend-integrationBelow are the commands to run the playwright tests:
npx playwright testBelow are the commands to generate sonarqube coverage:
1. npm run test (This will generate frontend and backend lcov.info)
2. npm run coverage (This will merge the frontend and backend coverage)
3. npm run sonarqube (This will generate sonarqube coverage)