diff options
-rw-r--r-- | README.adoc | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/README.adoc b/README.adoc index b300025..1d7531a 100644 --- a/README.adoc +++ b/README.adoc @@ -11,7 +11,7 @@ Matthias Andreas Benkard :keywords: mulk // Settings :icons: font -:source-highlighter: pygments +:source-highlighter: rouge == Resources @@ -37,23 +37,39 @@ Matthias Andreas Benkard To run the application with live reloading enabled: -[source] +[source,bash] ---- ./mvnw quarkus:dev ---- == Packaging +To bundle the web scripts and stylesheets: + +[source,bash] +---- +ant web +---- + To build JARs and a JVM-based Docker image and push the Docker image to https://docker.benkard.de/repositories/10[Portus]: -[source] +[source,bash] ---- ./mvnw package ---- To build a native image with https://graalvm.org[GraalVM] instead: -[source] +[source,bash] ---- ./mvnw package -Pnative ---- + +== Deploying + +To deploy: + +[source,bash] +---- +ant deploy +---- |