├── .DS_Store ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── docs.yml │ └── price-generator.yml ├── .gitignore ├── .jshintrc ├── .m2 └── settings.xml ├── LICENSE ├── README.adoc ├── apps ├── .DS_Store ├── price-generator │ ├── .dockerignore │ ├── .factorypath │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── developers │ │ │ ├── Beer.java │ │ │ ├── PriceGenerator.java │ │ │ └── PricedBeer.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties └── tutorial_app │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── developers │ │ │ ├── CustomHealthCheck.java │ │ │ ├── GreetingResource.java │ │ │ ├── Movie.java │ │ │ ├── MovieDTO.java │ │ │ ├── MovieResource.java │ │ │ ├── Swapi.java │ │ │ └── SwapiService.java │ └── resources │ │ ├── application.properties │ │ └── import.sql │ └── test │ └── java │ └── com │ └── redhat │ └── developers │ ├── GreetingResourceIT.java │ └── GreetingResourceTest.java ├── bin └── build-site.sh ├── component-images.yaml ├── dev-pages.yml ├── devfile.yaml ├── documentation ├── antora.yml └── modules │ ├── ROOT │ ├── _attributes.adoc │ ├── assets │ │ └── images │ │ │ ├── Dev_Services_Podman_ps.png │ │ │ ├── Dev_Services_Stopped.png │ │ │ ├── Dev_UI.png │ │ │ ├── Developer_Joy.png │ │ │ ├── Jaeger.png │ │ │ ├── Jaeger_DataSource.png │ │ │ ├── Jaeger_Span.png │ │ │ ├── Openshift.png │ │ │ ├── Timed_Resource.png │ │ │ ├── chat-assistant-cancelled.png │ │ │ ├── chat-assistant-success.png │ │ │ ├── chat-assistant.png │ │ │ ├── devui-mailpit.png │ │ │ ├── mailpit-email-sent.png │ │ │ ├── openshift_sandbox.png │ │ │ ├── pagination.png │ │ │ ├── parallel.png │ │ │ ├── podman-desktop-ai-catalog.png │ │ │ ├── podman-desktop-ai.png │ │ │ ├── podman-desktop-create-merlinite-service.png │ │ │ ├── podman-desktop-create-model-service.png │ │ │ ├── podman-desktop-model-download.png │ │ │ └── punkapi-route.png │ ├── nav.adoc │ └── pages │ │ ├── 01_setup.adoc │ │ ├── 02_basics.adoc │ │ ├── 03_configuration.adoc │ │ ├── 04_panache.adoc │ │ ├── 05_kubernetes.adoc │ │ ├── 06_dev-services.adoc │ │ ├── 07_spring.adoc │ │ ├── 08_rest-client.adoc │ │ ├── 09_fault-tolerance.adoc │ │ ├── 10_health.adoc │ │ ├── 11_observability.adoc │ │ ├── 12_security.adoc │ │ ├── 13_security-oidc.adoc │ │ ├── 14_reactive.adoc │ │ ├── 15_reactive-messaging.adoc │ │ ├── 16_kafka-and-streams.adoc │ │ ├── 17_ai_intro.adoc │ │ ├── 17_prompts.adoc │ │ ├── 18_chains_memory.adoc │ │ ├── 19_agents_tools.adoc │ │ ├── 20_embed_documents.adoc │ │ ├── 21_podman_ai.adoc │ │ ├── 22_local_models.adoc │ │ ├── 23_kubernetes_kafka_ai.adoc │ │ ├── _partials │ │ ├── build.adoc │ │ ├── compile-and-run.adoc │ │ ├── invoke-service.adoc │ │ ├── k8s-build-deploy.adoc │ │ ├── prereq-cli.adoc │ │ ├── run-dev-mode.adoc │ │ └── set-env-vars.adoc │ │ └── index.adoc │ └── _attributes.adoc ├── github-pages.yml ├── gulpfile.babel.js ├── jwt-token ├── quarkus-realm.json ├── quarkus.jwt.pub ├── quarkus.jwt.token └── quarkus.keycloak.jwt.token ├── lib ├── copy-to-clipboard.js ├── remote-include-processor.js └── tab-block.js ├── package.json ├── supplemental-ui ├── img │ ├── clippy.svg │ └── favicon.ico └── partials │ └── footer-content.hbs └── templates ├── app.yaml ├── custom-probes.yaml └── probes.yaml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/.DS_Store -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/price-generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/.github/workflows/price-generator.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 6 3 | } 4 | -------------------------------------------------------------------------------- /.m2/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/.m2/settings.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/README.adoc -------------------------------------------------------------------------------- /apps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/.DS_Store -------------------------------------------------------------------------------- /apps/price-generator/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/.dockerignore -------------------------------------------------------------------------------- /apps/price-generator/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/.factorypath -------------------------------------------------------------------------------- /apps/price-generator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/.gitignore -------------------------------------------------------------------------------- /apps/price-generator/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /apps/price-generator/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /apps/price-generator/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /apps/price-generator/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/mvnw -------------------------------------------------------------------------------- /apps/price-generator/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/mvnw.cmd -------------------------------------------------------------------------------- /apps/price-generator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/pom.xml -------------------------------------------------------------------------------- /apps/price-generator/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /apps/price-generator/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /apps/price-generator/src/main/java/com/redhat/developers/Beer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/src/main/java/com/redhat/developers/Beer.java -------------------------------------------------------------------------------- /apps/price-generator/src/main/java/com/redhat/developers/PriceGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/src/main/java/com/redhat/developers/PriceGenerator.java -------------------------------------------------------------------------------- /apps/price-generator/src/main/java/com/redhat/developers/PricedBeer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/src/main/java/com/redhat/developers/PricedBeer.java -------------------------------------------------------------------------------- /apps/price-generator/src/main/resources/META-INF/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/src/main/resources/META-INF/resources/index.html -------------------------------------------------------------------------------- /apps/price-generator/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/price-generator/src/main/resources/application.properties -------------------------------------------------------------------------------- /apps/tutorial_app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/.dockerignore -------------------------------------------------------------------------------- /apps/tutorial_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/.gitignore -------------------------------------------------------------------------------- /apps/tutorial_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/README.md -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/docker/Dockerfile.native-micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/docker/Dockerfile.native-micro -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/java/com/redhat/developers/CustomHealthCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/java/com/redhat/developers/CustomHealthCheck.java -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/java/com/redhat/developers/GreetingResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/java/com/redhat/developers/GreetingResource.java -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/java/com/redhat/developers/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/java/com/redhat/developers/Movie.java -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/java/com/redhat/developers/MovieDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/java/com/redhat/developers/MovieDTO.java -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/java/com/redhat/developers/MovieResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/java/com/redhat/developers/MovieResource.java -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/java/com/redhat/developers/Swapi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/java/com/redhat/developers/Swapi.java -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/java/com/redhat/developers/SwapiService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/java/com/redhat/developers/SwapiService.java -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/resources/application.properties -------------------------------------------------------------------------------- /apps/tutorial_app/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/main/resources/import.sql -------------------------------------------------------------------------------- /apps/tutorial_app/src/test/java/com/redhat/developers/GreetingResourceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/test/java/com/redhat/developers/GreetingResourceIT.java -------------------------------------------------------------------------------- /apps/tutorial_app/src/test/java/com/redhat/developers/GreetingResourceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/apps/tutorial_app/src/test/java/com/redhat/developers/GreetingResourceTest.java -------------------------------------------------------------------------------- /bin/build-site.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/bin/build-site.sh -------------------------------------------------------------------------------- /component-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/component-images.yaml -------------------------------------------------------------------------------- /dev-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/dev-pages.yml -------------------------------------------------------------------------------- /devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/devfile.yaml -------------------------------------------------------------------------------- /documentation/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/antora.yml -------------------------------------------------------------------------------- /documentation/modules/ROOT/_attributes.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/Dev_Services_Podman_ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/Dev_Services_Podman_ps.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/Dev_Services_Stopped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/Dev_Services_Stopped.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/Dev_UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/Dev_UI.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/Developer_Joy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/Developer_Joy.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/Jaeger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/Jaeger.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/Jaeger_DataSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/Jaeger_DataSource.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/Jaeger_Span.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/Jaeger_Span.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/Openshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/Openshift.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/Timed_Resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/Timed_Resource.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/chat-assistant-cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/chat-assistant-cancelled.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/chat-assistant-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/chat-assistant-success.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/chat-assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/chat-assistant.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/devui-mailpit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/devui-mailpit.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/mailpit-email-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/mailpit-email-sent.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/openshift_sandbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/openshift_sandbox.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/pagination.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/parallel.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/podman-desktop-ai-catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/podman-desktop-ai-catalog.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/podman-desktop-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/podman-desktop-ai.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/podman-desktop-create-merlinite-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/podman-desktop-create-merlinite-service.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/podman-desktop-create-model-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/podman-desktop-create-model-service.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/podman-desktop-model-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/podman-desktop-model-download.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/assets/images/punkapi-route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/assets/images/punkapi-route.png -------------------------------------------------------------------------------- /documentation/modules/ROOT/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/nav.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/01_setup.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/01_setup.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/02_basics.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/02_basics.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/03_configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/03_configuration.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/04_panache.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/04_panache.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/05_kubernetes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/05_kubernetes.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/06_dev-services.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/06_dev-services.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/07_spring.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/07_spring.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/08_rest-client.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/08_rest-client.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/09_fault-tolerance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/09_fault-tolerance.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/10_health.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/10_health.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/11_observability.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/11_observability.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/12_security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/12_security.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/13_security-oidc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/13_security-oidc.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/14_reactive.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/14_reactive.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/15_reactive-messaging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/15_reactive-messaging.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/16_kafka-and-streams.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/16_kafka-and-streams.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/17_ai_intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/17_ai_intro.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/17_prompts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/17_prompts.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/18_chains_memory.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/18_chains_memory.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/19_agents_tools.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/19_agents_tools.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/20_embed_documents.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/20_embed_documents.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/21_podman_ai.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/21_podman_ai.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/22_local_models.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/22_local_models.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/23_kubernetes_kafka_ai.adoc: -------------------------------------------------------------------------------- 1 | = Bringing Kubernetes and Kafka to the party 2 | 3 | -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/_partials/build.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/_partials/build.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/_partials/compile-and-run.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/_partials/compile-and-run.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/_partials/invoke-service.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/_partials/invoke-service.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/_partials/k8s-build-deploy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/_partials/k8s-build-deploy.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/_partials/prereq-cli.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/_partials/prereq-cli.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/_partials/run-dev-mode.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/_partials/run-dev-mode.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/_partials/set-env-vars.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/_partials/set-env-vars.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/documentation/modules/ROOT/pages/index.adoc -------------------------------------------------------------------------------- /documentation/modules/_attributes.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/github-pages.yml -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /jwt-token/quarkus-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/jwt-token/quarkus-realm.json -------------------------------------------------------------------------------- /jwt-token/quarkus.jwt.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/jwt-token/quarkus.jwt.pub -------------------------------------------------------------------------------- /jwt-token/quarkus.jwt.token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/jwt-token/quarkus.jwt.token -------------------------------------------------------------------------------- /jwt-token/quarkus.keycloak.jwt.token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/jwt-token/quarkus.keycloak.jwt.token -------------------------------------------------------------------------------- /lib/copy-to-clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/lib/copy-to-clipboard.js -------------------------------------------------------------------------------- /lib/remote-include-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/lib/remote-include-processor.js -------------------------------------------------------------------------------- /lib/tab-block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/lib/tab-block.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /supplemental-ui/img/clippy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/supplemental-ui/img/clippy.svg -------------------------------------------------------------------------------- /supplemental-ui/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/supplemental-ui/img/favicon.ico -------------------------------------------------------------------------------- /supplemental-ui/partials/footer-content.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/supplemental-ui/partials/footer-content.hbs -------------------------------------------------------------------------------- /templates/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/templates/app.yaml -------------------------------------------------------------------------------- /templates/custom-probes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/templates/custom-probes.yaml -------------------------------------------------------------------------------- /templates/probes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer-demos/quarkus-tutorial/HEAD/templates/probes.yaml --------------------------------------------------------------------------------