Blog Demo

Running the application in dev mode

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

./mvnw compile quarkus:dev

Or:

./gradlew quarkusDev

Generating the Slide Show

Generate the slide show by calling the asciidoctor:process-asciidoc Maven goal:

./mvnw asciidoctor:process-asciidoc

You can find the HTML file at target/generated-docs/SLIDES.html.

Packaging and running the application

The application can be packaged using:

./mvnw package

Or (Gradle):

./gradlew build

Creating a native executable

You can create a native executable using:

./mvnw package -Pnative -Dquarkus.native.container-build=true

Or (Gradle):

./gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true