aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: 769f5d0080624197a4eceb88ccb2206f39d76271 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Portal-history
This microservice manages the user actions for the `ui` frontend application. It is a Spring Boot application that is build upon MongoDB and Webflux.

## Build
```sh
./gradlew build
```

## Run
```sh
./gradlew bootRun
```

## Test
```sh
./gradlew test                                                                        # run all tests
./gradlew test --tests ActionsControllerIntegrationTest                               # run all tests in file
./gradlew test --tests ActionsControllerIntegrationTest.thatActionCanBeSaved          # run individual test in file
./gradlew test --tests ActionsControllerIntegrationTest.thatActionCanBeSaved --debug  # run individual test in file with debug enabled
```

## Development
You can run the service locally for evaluation or development purposes using the provided `docker-compose.yml` file in the development folder. This will launch a Keycloak, a Postgres and a Mongo db in the background.

**Prerequisites:** Running local docker daemon and a docker cli

To start the service execute the `run.sh` in the development folder:
```sh
development/run.sh
```

Example request against the portal-prefs service can be run in your preferred IDE with the `request.http file from the development folder.

You can access the Keycloak UI via browser.
URL: http://localhost:8080
**username:** admin  
**password:** password

To stop the portal-prefs service, Keycloak and the databases run:
```sh
development/stop.sh
```