Calculator App is a UI application that allows the user to perform basic arithmetic operations, random string generation, and view the records of the previous calculations.
This application is built using Vue.js and Typescript.
You will need:
- Node.js - for compiling the source code and running the application it comes with
npmpackage manager follow the instructions on https://nodejs.org/en/download - Git - for cloning the repository https://git-scm.com/downloads
- Browser - for running the application
Note: The application depends on the Calculation Service to perform the calculations and store the records. To get the application working you will need to setup the Calculation Service first.
git clone git@github.com:masterkeysrd/calculator-ui.gitor if you are using https:
git clone https://github.com/masterkeysrd/calculator-ui.gitcd calculator-ui
npm installCopy the .env.example file and rename it to .env.local and set the values of the variables.
cp .env.example .env.localnpm run devOpen the browser and go to http://localhost:5174/
