This project is a simple quarkus rest serivce responding to any request with a simple 404 response and a json body.
You can run your application in dev mode that enables live coding using:
./mvnw quarkus:dev# If you are on windows it is recommended to use virtualbox as driver for minikube
minikube config set driver virtualbox
bash k8s/setup.sh <github-token>This will setup a local minikube cluster with all components deployed. It will replace the deployment targeting this application with a service pointing to the host machine. This way you can run the application in dev mode and is accessable as if it was running in the cluster.
./mvnw package -PnativeNOTE: You need to build the application first with maven
docker build -f src/main/docker/Dockerfile.native-micro -t quarkus/api-fallback-service .docker run -i --rm -p 8080:8080 ghcr.io/food2gether/api-fallback-service:<version>