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
npm
package 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 [email protected]:masterkeysrd/calculator-ui.git
or if you are using https
:
git clone https://github.com/masterkeysrd/calculator-ui.git
cd calculator-ui
npm install
Copy the .env.example
file and rename it to .env.local
and set the values of the variables.
cp .env.example .env.local
npm run dev
Open the browser and go to http://localhost:5174/