From a2f19dafc0785ba8def087a00b093d70808c9f15 Mon Sep 17 00:00:00 2001 From: alexsilva Date: Mon, 16 Oct 2023 10:41:36 +0100 Subject: [PATCH] docs(README) - INSTALL.md update regarding project installation --- INSTALL.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index a31fb9d7d..aef4dcac9 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -6,7 +6,10 @@ This file contains information on how to configure and run the BPDM applications BPDM Pool is a SpringBoot Kotlin software project managed by Maven. -To run the project first you need to install it from the parent pom, go to the root folder and run `mvn clean install` +To run the project first you need to install it from the parent pom. For that go to the root folder and then there are two options to run the project: + +1. `mvn clean install -DskipTests` - This will install all the dependencies without need for test execution. +2. Install missing docker images used by the bridge-dummy tests `docker compose -f docker-compose.build.yml build`. After that run `mvn clean install`. Then depending on which module you want to start go to the module subfolder you like to run and use the following command: `mvn spring-boot:run`