Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 2.09 KB

File metadata and controls

43 lines (30 loc) · 2.09 KB

Getting Started

Reference Documentation

For further reference, please consider the following sections:

Guides

The following guides illustrate how to use some features concretely:

Maven Parent overrides

Due to Maven's design, elements are inherited from the parent POM to the project POM. While most of the inheritance is fine, it also inherits unwanted elements like <license> and <developers> from the parent. To prevent this, the project POM contains empty overrides for these elements. If you manually switch to a different parent and actually want the inheritance, you need to remove those overrides.

Docker

Use docker-compose up -d to start the docker containers containing the redis database and redis insights. Make sure that docker is already running on your machine when executing the command. The contents of the database can be accessed through http://localhost:5540 . To stop the container, run docker-compose down.

connect to the server using redis-cli: docker exec -it redis redis-cli Then, authenticate yourself with: AUTH <password>

Access the API

To access the API through the ui provided by swagger, go to http://localhost:8080/swagger-ui/index.html

To generate the OpenAPI specification, go to http://localhost:8080/v3/api-docs