Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Add Requirements for first time Install #525

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down