This project uses Quarkus, the Supersonic Subatomic Java Framework.
If you want to learn more about Quarkus, please visit its website: https://quarkus.io/ .
Start database in a container
docker run -it --rm=true --name quarkus_test -e POSTGRES_USER=quarkus -e POSTGRES_PASSWORD=MyPassword -e POSTGRES_DB=mydatabase -p 5432:5432 postgres:15.1-alpineor start db and cache (cache implementation TODO) using Docker Compose
docker compose upYou can run your application in dev mode that enables live coding using:
./mvnw clean compile quarkus:devThe application can be packaged using:
./mvnw clean package