summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2021-01-22 18:24:44 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2021-01-22 18:24:44 +0100
commit7f322c2f1b3ef3a7260a20cbea67fd8ace90b713 (patch)
tree8e88ae37954c5ce4ea57583ffcd62c84f1315695
parent765b3a2064c74973a5c1741e2fb95feede9312e1 (diff)
README: Make use of Rouge's support for console highlighting.
Change-Id: Idd6926cf19efdad59329f7371db5c231f03ba42a
-rw-r--r--README.adoc20
1 files changed, 10 insertions, 10 deletions
diff --git a/README.adoc b/README.adoc
index 1d7531a..bd0200e 100644
--- a/README.adoc
+++ b/README.adoc
@@ -37,39 +37,39 @@ Matthias Andreas Benkard
To run the application with live reloading enabled:
-[source,bash]
+[source,console]
----
-./mvnw quarkus:dev
+$ ./mvnw quarkus:dev
----
== Packaging
To bundle the web scripts and stylesheets:
-[source,bash]
+[source,console]
----
-ant web
+$ 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,bash]
+[source,console]
----
-./mvnw package
+$ ./mvnw package
----
To build a native image with https://graalvm.org[GraalVM] instead:
-[source,bash]
+[source,console]
----
-./mvnw package -Pnative
+$ ./mvnw package -Pnative
----
== Deploying
To deploy:
-[source,bash]
+[source,console]
----
-ant deploy
+$ ant deploy
----