Document Ant targets 'web', 'deploy'.

Change-Id: I3b770b92621091faa4366189fedba09d6fbb3e9d
diff --git a/README.adoc b/README.adoc
index b300025..1d7531a 100644
--- a/README.adoc
+++ b/README.adoc
@@ -11,7 +11,7 @@
 :keywords: mulk
 // Settings
 :icons: font
-:source-highlighter: pygments
+:source-highlighter: rouge
 
 == Resources
 
@@ -37,23 +37,39 @@
 
 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
+----