summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2021-01-22 15:02:02 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2021-01-22 15:06:08 +0100
commit765b3a2064c74973a5c1741e2fb95feede9312e1 (patch)
treeca3940617164893dff01e1655211fbdc5035b44b
parent9327533a663054a8e19ea2ea3a4f12e8deca6782 (diff)
Document Ant targets 'web', 'deploy'.
Change-Id: I3b770b92621091faa4366189fedba09d6fbb3e9d
-rw-r--r--README.adoc24
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
+----