From ca4848b21064b501537cfedb26f843a22bb0723a Mon Sep 17 00:00:00 2001 From: Andy Damevin Date: Tue, 23 Jan 2024 11:04:06 +0100 Subject: [PATCH] Update readme --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ecbd7d7e8..23be74b6d 100644 --- a/README.md +++ b/README.md @@ -18,17 +18,21 @@ Api is located in `base/src/main/java` UI is located in `base/src/main/resources/web/` Use this command to start `community-app` dev mode on: http://0.0.0.0:8080 (Api and UI). -``` +```shell +# Install the parent pom +./mvnw clean install -N + +# Start the dev mode cd base && quarkus dev ``` Build the app locally: -``` +```shell mvn clean install -Dlib -Dcommunity-app ``` After building, use this command to start the `community-app` in production mode: -``` +```shell java -jar community-app/target/quarkus-app/quarkus-run.jar ```