Tax Calculator

Setting Up the Frontend

  • Clone this repository to your local machine.
  • Navigate into the project directory.
  • Install the required dependencies:
npm install
  • Start the development server:
npm run dev
  • Run the project with docker
docker build -t tax-calculator .
docker run -it --rm -p 3000:80 tax-calculator
  • Run the project with docker compose
docker compose up

The application should now be running and accessible at http://localhost:3000.

Testing The project includes a suite of automated tests covering critical functionalities. Run the tests using:

npm test