-
Notifications
You must be signed in to change notification settings - Fork 0
UI Development
Ahmed edited this page Mar 16, 2026
·
2 revisions
The EventLens frontend is built with React and Vite.
To run the UI independently from the Fat JAR wrapper with Hot Module Replacement (HMR):
- Start your backend API server (either via IntelliJ JVM Runner or
./gradlew run) so thatlocalhost:9090is actively accepting connections. - Ensure your
server.allowed-originsconfig ineventlens.yamlcontains your Vite dev URL (http://localhost:5173).
cd eventlens-ui
npm install
npm run devPoint your browser to http://localhost:5173. Any changes to React components will instantly reflect without rebuilding JARs.