This project consists of a unit conversion application with a backend developed in Spring Boot (Kotlin) and a frontend developed in React with TypeScript.
This project is inspired by the Unit Converter project idea from: https://roadmap.sh/projects/unit-converter
UnitConvertProject/
├── Backend/ # Spring Boot Application (Kotlin)
│ └── APIUnit/ # API for unit conversion
└── Frontend/ # React/TypeScript Application
└── unitConvert/ # User interface
Navigate to the backend directory:
cd Backend/APIUnit
Build the project:
./gradlew build
Run the application:
./gradlew bootRun
The backend will be available at http://localhost:8080
Navigate to the frontend directory:
cd Frontend/unitConvert
Install dependencies:
npm install
Start the application:
npm run dev
The frontend will be available at http://localhost:5173
http://localhost:5173