From f2ce91891a45782c4b42be8f5ca5001fc2be4751 Mon Sep 17 00:00:00 2001 From: DavidCroftDKFZ <46788708+DavidCroftDKFZ@users.noreply.github.com> Date: Thu, 6 Feb 2025 16:55:12 +0100 Subject: [PATCH] Added more details to README --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f0839f1..2f17a7d 100644 --- a/README.md +++ b/README.md @@ -18,23 +18,23 @@ You need to create the directory "trusted-ca-certs" if not already present. You need to copy over eric.root.crt.pem from a Bridgehead (it is publicly available in the bridgehead GitHub repo). -Build the feedback hub UI: -``` code -cd .. -git clone https://github.com/samply/feedback-hub-ui.git -cd feedback-hub-ui -docker build -t samply/feedback-hub-ui . -``` +Build the feedback hub UI (more details [here](https://github.com/samply/feedback-hub-ui)). ## Building for production +If you want to run the feedback hub UI centrally together with the [feedback hub UI](https://github.com/samply/feedback-hub-ui), +you will need to clone the repository and build the container: ``` code +git clone https://github.com/samply/feedback-hub.git +cd feedback-hub mvn clean install docker build -t samply/feedback-agent . ``` -## Running +## Running for production The ```docker-compose.yml``` file can be used to run the feedback hub. This file will run both the backend and the UI. ``` code docker compose up -d ``` +You will find the UI at http://localhost:8095/ on the production machine. +