tree: 2fc975fa7819d4e984d451d34f28a183ef005a31 [path history] [tgz]
  1. .mvn/
  2. gradle/
  3. src/
  4. .dockerignore
  5. .gitignore
  6. build.gradle.kts
  7. gradle.properties
  8. gradlew
  9. gradlew.bat
  10. mvnw
  11. mvnw.cmd
  12. pom.xml
  13. README.md
  14. settings.gradle.kts
blog/README.md

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