1. Development

./mvnw clean compile quarkus:dev

1.1. Database Access

We use for the development configuration the zero conf dev-service of quarkus. For more information see here. You dont have to start up a database.

Key Value

Host

localhost

Port

5432

username

quarkus

password

quarkus

database

default

2. Production

2.1. Build Image

docker build . -t <your-image-tag>

2.2. Run Image

docker run -p 8080:8080 <your-image-tag>