Minimal Helidon SE + Kotlin + React + Typescript + Gradle + Yarn + Vite
example.
- Installed
Gradle
- Installed
Yarn
- JDK11+ for
helidon
gradle build --parallel
java -jar backend/build/libs/backend.jar
cd frontend
yarn dev
- starts vite in watch and hot reload mode
idea .
- Open http://localhost:8080 in browser
curl -X GET http://localhost:8080/greet
{"message":"Hello World!"}
. . .
curl -s -X GET http://localhost:8080/health
{"outcome":"UP",...
. . .
# Prometheus Format
curl -s -X GET http://localhost:8080/metrics
# TYPE base:gc_g1_young_generation_count gauge
. . .
# JSON Format
curl -H 'Accept: application/json' -X GET http://localhost:8080/metrics
{"base":...
. . .