Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 1.69 KB

README.md

File metadata and controls

25 lines (17 loc) · 1.69 KB

Java CI with Gradle Quality Gate Status Maintainability Rating Reliability Rating Security Rating

quarkus spa example using qute and htmx

Example Project using quarkus qute and htmx for a single page application.

Running the application in dev mode

You can run your application in dev mode that enables live coding using:

./gradlew quarkusDev

NOTE: Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.

Packaging and running the application

The application can be packaged using:

./gradlew build

It produces the quarkus-run.jar file in the build/quarkus-app/ directory. Be aware that it’s not an über-jar as the dependencies are copied into the build/quarkus-app/lib/ directory.

The application is now runnable using java -jar build/quarkus-app/quarkus-run.jar.