├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── comprehensive-review ├── apps │ ├── README.md │ ├── materials │ │ ├── ParkGuard.java │ │ ├── auth │ │ │ ├── AuthResource.java │ │ │ └── UserService.java │ │ ├── import.sql │ │ └── weather │ │ │ ├── WeatherWarning.java │ │ │ ├── WeatherWarningLevel.java │ │ │ └── WeatherWarningType.java │ ├── parks-dashboard │ │ ├── .editorconfig │ │ ├── .eslintrc │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── fonts │ │ │ │ ├── RedHatDisplay-Bold.woff │ │ │ │ ├── RedHatDisplay-Bold.woff2 │ │ │ │ ├── RedHatDisplay-Medium.woff │ │ │ │ ├── RedHatDisplay-Medium.woff2 │ │ │ │ ├── RedHatDisplay-Regular.woff │ │ │ │ ├── RedHatDisplay-Regular.woff2 │ │ │ │ ├── RedHatDisplay-updated-Bold.woff2 │ │ │ │ ├── RedHatDisplay-updated-Medium.woff2 │ │ │ │ ├── RedHatDisplay-updated-Regular.woff2 │ │ │ │ ├── RedHatDisplayVF-updated-ItalicModified.woff2 │ │ │ │ ├── RedHatDisplayVFModified-updated.woff2 │ │ │ │ ├── RedHatMono-updated-Regular.woff2 │ │ │ │ ├── RedHatMonoVF-updated-Italic.woff2 │ │ │ │ ├── RedHatMonoVF-updated.woff2 │ │ │ │ ├── RedHatText-Medium.woff │ │ │ │ ├── RedHatText-Medium.woff2 │ │ │ │ ├── RedHatText-Regular.woff │ │ │ │ ├── RedHatText-Regular.woff2 │ │ │ │ ├── RedHatText-updated-Medium.woff2 │ │ │ │ ├── RedHatText-updated-Regular.woff2 │ │ │ │ ├── RedHatTextVF-updated-ItalicModified.woff2 │ │ │ │ ├── RedHatTextVFModified-updated.woff2 │ │ │ │ ├── overpass-bold-italic.woff │ │ │ │ ├── overpass-bold-italic.woff2 │ │ │ │ ├── overpass-bold.woff │ │ │ │ ├── overpass-bold.woff2 │ │ │ │ ├── overpass-extrabold-italic.woff │ │ │ │ ├── overpass-extrabold-italic.woff2 │ │ │ │ ├── overpass-extrabold.woff │ │ │ │ ├── overpass-extrabold.woff2 │ │ │ │ ├── overpass-extralight-italic.woff │ │ │ │ ├── overpass-extralight-italic.woff2 │ │ │ │ ├── overpass-extralight.woff │ │ │ │ ├── overpass-extralight.woff2 │ │ │ │ ├── overpass-heavy-italic.woff │ │ │ │ ├── overpass-heavy-italic.woff2 │ │ │ │ ├── overpass-heavy.woff │ │ │ │ ├── overpass-heavy.woff2 │ │ │ │ ├── overpass-italic.woff │ │ │ │ ├── overpass-italic.woff2 │ │ │ │ ├── overpass-light-italic.woff │ │ │ │ ├── overpass-light-italic.woff2 │ │ │ │ ├── overpass-light.woff │ │ │ │ ├── overpass-light.woff2 │ │ │ │ ├── overpass-mono-bold.woff │ │ │ │ ├── overpass-mono-bold.woff2 │ │ │ │ ├── overpass-mono-light.woff │ │ │ │ ├── overpass-mono-light.woff2 │ │ │ │ ├── overpass-mono-regular.woff │ │ │ │ ├── overpass-mono-regular.woff2 │ │ │ │ ├── overpass-mono-semibold.woff │ │ │ │ ├── overpass-mono-semibold.woff2 │ │ │ │ ├── overpass-regular.woff │ │ │ │ ├── overpass-regular.woff2 │ │ │ │ ├── overpass-semibold-italic.woff │ │ │ │ ├── overpass-semibold-italic.woff2 │ │ │ │ ├── overpass-semibold.woff │ │ │ │ ├── overpass-semibold.woff2 │ │ │ │ ├── overpass-thin-italic.woff │ │ │ │ ├── overpass-thin-italic.woff2 │ │ │ │ ├── overpass-thin.woff │ │ │ │ ├── overpass-thin.woff2 │ │ │ │ ├── pficon.woff │ │ │ │ └── pficon.woff2 │ │ │ ├── images │ │ │ │ ├── favicon.ico │ │ │ │ ├── pfbg_2000.jpg │ │ │ │ ├── pfbg_576.jpg │ │ │ │ ├── pfbg_576@2x.jpg │ │ │ │ ├── pfbg_768.jpg │ │ │ │ ├── pfbg_768@2x.jpg │ │ │ │ └── pfbg_992@2x.jpg │ │ │ ├── index.html │ │ │ ├── main.bundle.js │ │ │ ├── main.bundle.js.LICENSE.txt │ │ │ ├── main.bundle.js.map │ │ │ ├── main.css │ │ │ └── main.css.map │ │ ├── fake-backend.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── serve.py │ │ ├── src │ │ │ ├── app │ │ │ │ ├── AppLayout.tsx │ │ │ │ ├── app.css │ │ │ │ ├── components │ │ │ │ │ ├── AuthMenu.tsx │ │ │ │ │ ├── BullseyeSpinner.tsx │ │ │ │ │ ├── Dashboard.tsx │ │ │ │ │ └── ParkCard.tsx │ │ │ │ ├── images │ │ │ │ │ ├── avatarImg.svg │ │ │ │ │ └── training_white.png │ │ │ │ ├── index.tsx │ │ │ │ ├── models │ │ │ │ │ ├── Park.ts │ │ │ │ │ ├── ParkEvent.ts │ │ │ │ │ ├── RecentList.ts │ │ │ │ │ ├── SensorMeasurement.ts │ │ │ │ │ ├── User.ts │ │ │ │ │ └── WeatherWarning.ts │ │ │ │ └── services │ │ │ │ │ ├── API.ts │ │ │ │ │ ├── AuthService.ts │ │ │ │ │ ├── LivenessService.ts │ │ │ │ │ ├── ParkServerEvents.ts │ │ │ │ │ ├── ParksService.ts │ │ │ │ │ └── WeatherService.ts │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── index.html │ │ │ ├── index.tsx │ │ │ └── typings.d.ts │ │ ├── stylePaths.js │ │ ├── tsconfig.json │ │ ├── webpack.common.js │ │ ├── webpack.dev.js │ │ └── webpack.prod.js │ └── weather │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── .gitignore │ │ │ ├── MavenWrapperDownloader.java │ │ │ └── maven-wrapper.properties │ │ ├── README.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── smartcity │ │ │ │ ├── WeatherSimulation.java │ │ │ │ ├── WeatherWarningResource.java │ │ │ │ ├── WeatherWarningsRepository.java │ │ │ │ └── entities │ │ │ │ ├── WeatherWarning.java │ │ │ │ ├── WeatherWarningLevel.java │ │ │ │ └── WeatherWarningType.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── smartcity │ │ ├── WeatherWarningResourceIT.java │ │ └── WeatherWarningResourceTest.java └── solutions │ ├── README.md │ └── parks │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── smartcity │ │ │ ├── AuthResource.java │ │ │ ├── JwtGenerator.java │ │ │ ├── Park.java │ │ │ ├── ParkGuard.java │ │ │ ├── ParksResource.java │ │ │ ├── UserService.java │ │ │ ├── WeatherWarningsProcessor.java │ │ │ └── weather │ │ │ ├── WeatherService.java │ │ │ ├── WeatherWarning.java │ │ │ ├── WeatherWarningLevel.java │ │ │ └── WeatherWarningType.java │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ ├── application.properties │ │ ├── import.sql │ │ ├── privateKey.pem │ │ └── publicKey.pem │ └── test │ └── java │ └── com │ └── redhat │ └── smartcity │ └── ParksResourceTest.java ├── deploy-openshift ├── apps │ └── expense │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── kubefiles │ │ └── app.yaml │ │ ├── pom.xml │ │ ├── post_expense.sh │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ └── expenses │ │ │ │ ├── Expense.java │ │ │ │ ├── ExpenseConfiguration.java │ │ │ │ ├── ExpenseResource.java │ │ │ │ └── ExpenseValidator.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ └── expenses │ │ ├── ExpenseCreationIT.java │ │ ├── ExpenseCreationTest.java │ │ └── ExpenseValidationTest.java └── solutions │ └── expense │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── kubefiles │ └── app.yaml │ ├── pom.xml │ ├── post_expense.sh │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── expenses │ │ │ ├── Expense.java │ │ │ ├── ExpenseConfiguration.java │ │ │ ├── ExpenseResource.java │ │ │ └── ExpenseValidator.java │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ └── expenses │ ├── ExpenseCreationIT.java │ ├── ExpenseCreationTest.java │ └── ExpenseValidationTest.java ├── deploy-review ├── apps │ ├── microservice-session │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── kubefiles │ │ │ └── app.yaml │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── create-session.sh │ │ │ └── get-sessions.sh │ │ └── src │ │ │ ├── main │ │ │ ├── docker │ │ │ │ ├── Dockerfile.jvm │ │ │ │ ├── Dockerfile.legacy-jar │ │ │ │ ├── Dockerfile.native │ │ │ │ └── Dockerfile.native-micro │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── redhat │ │ │ │ │ └── training │ │ │ │ │ └── conference │ │ │ │ │ ├── session │ │ │ │ │ ├── Session.java │ │ │ │ │ ├── SessionResource.java │ │ │ │ │ ├── SessionStoreService.java │ │ │ │ │ └── SessionWithSpeaker.java │ │ │ │ │ └── speaker │ │ │ │ │ ├── Speaker.java │ │ │ │ │ └── SpeakerServiceClient.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── conference │ │ │ └── session │ │ │ └── SessionResourceTest.java │ └── microservice-speaker │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ ├── resources │ │ ├── create-speaker.sh │ │ └── get-speakers.sh │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ └── speaker │ │ │ │ ├── Speaker.java │ │ │ │ └── SpeakerResource.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── acme │ │ │ └── conference │ │ │ └── speaker │ │ │ └── SpeakerResourceTest.java │ │ └── resources │ │ └── k8s-sb │ │ └── testing │ │ ├── database │ │ ├── host │ │ ├── password │ │ ├── port │ │ ├── type │ │ └── username └── solutions │ ├── microservice-session │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── kubefiles │ │ └── app.yaml │ ├── pom.xml │ ├── resources │ │ ├── create-session.sh │ │ └── get-sessions.sh │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ └── conference │ │ │ │ ├── session │ │ │ │ ├── Session.java │ │ │ │ ├── SessionResource.java │ │ │ │ ├── SessionStoreService.java │ │ │ │ └── SessionWithSpeaker.java │ │ │ │ └── speaker │ │ │ │ ├── Speaker.java │ │ │ │ └── SpeakerServiceClient.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ └── conference │ │ └── session │ │ └── SessionResourceTest.java │ └── microservice-speaker │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ ├── resources │ ├── create-speaker.sh │ └── get-speakers.sh │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── speaker │ │ │ ├── Speaker.java │ │ │ └── SpeakerResource.java │ └── resources │ │ └── application.properties │ └── test │ ├── java │ └── org │ │ └── acme │ │ └── conference │ │ └── speaker │ │ └── SpeakerResourceTest.java │ └── resources │ └── k8s-sb │ └── testing │ ├── database │ ├── host │ ├── password │ ├── port │ ├── type │ └── username ├── deploy-source ├── apps │ ├── expense-client │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── client │ │ │ │ └── ExpenseServiceClient.java │ │ │ │ ├── model │ │ │ │ └── Expense.java │ │ │ │ └── service │ │ │ │ └── ClientResource.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ └── expense-service │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.fast-jar │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── Expense.java │ │ │ ├── ExpenseResource.java │ │ │ └── ExpenseService.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties └── solutions │ ├── expense-client │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── client │ │ │ └── ExpenseServiceClient.java │ │ │ ├── model │ │ │ └── Expense.java │ │ │ └── service │ │ │ └── ClientResource.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties │ └── expense-service │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── docker │ ├── Dockerfile.fast-jar │ ├── Dockerfile.jvm │ └── Dockerfile.native │ ├── java │ └── com │ │ └── redhat │ │ └── training │ │ ├── Expense.java │ │ ├── ExpenseResource.java │ │ └── ExpenseService.java │ └── resources │ ├── META-INF │ └── resources │ │ └── index.html │ └── application.properties ├── develop-config ├── apps │ └── expense-validator │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── ExpenseValidator.java │ │ │ └── ExpenseValidatorCli.java │ │ └── resources │ │ └── application.properties └── solutions │ └── expense-validator │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── docker │ ├── Dockerfile.jvm │ ├── Dockerfile.legacy-jar │ ├── Dockerfile.native │ └── Dockerfile.native-micro │ ├── java │ └── com │ │ └── redhat │ │ └── training │ │ ├── ExpenseConfiguration.java │ │ ├── ExpenseValidator.java │ │ └── ExpenseValidatorCli.java │ └── resources │ └── application.properties ├── develop-native ├── apps │ └── expense-function │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── expenses │ │ │ │ ├── Expense.java │ │ │ │ ├── ExpenseFunctions.java │ │ │ │ └── ExpenseRepository.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── expenses │ │ ├── ExpenseResourceTest.java │ │ └── NativeExpenseResourceIT.java └── solutions │ └── expense-function │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── expenses │ │ │ ├── Expense.java │ │ │ ├── ExpenseFunctions.java │ │ │ └── ExpenseRepository.java │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── expenses │ ├── ExpenseResourceTest.java │ └── NativeExpenseResourceIT.java ├── develop-persist ├── apps │ └── expense-service │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.fast-jar │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── model │ │ │ ├── Associate.java │ │ │ └── Expense.java │ │ │ └── rest │ │ │ └── ExpenseResource.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ ├── application.properties │ │ └── import.sql └── solutions │ └── expense-service │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── docker │ ├── Dockerfile.fast-jar │ ├── Dockerfile.jvm │ └── Dockerfile.native │ ├── java │ └── com │ │ └── redhat │ │ └── training │ │ ├── model │ │ ├── Associate.java │ │ └── Expense.java │ │ └── rest │ │ └── ExpenseResource.java │ └── resources │ ├── META-INF │ └── resources │ │ └── index.html │ ├── application.properties │ └── import.sql ├── develop-rest ├── apps │ ├── expense-client │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── client │ │ │ │ └── ExpenseServiceClient.java │ │ │ │ ├── model │ │ │ │ └── Expense.java │ │ │ │ └── service │ │ │ │ └── ClientResource.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ ├── angular.min.js │ │ │ │ ├── index.html │ │ │ │ └── wing.min.css │ │ │ └── application.properties │ └── expense-service │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.fast-jar │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── Expense.java │ │ │ ├── ExpenseResource.java │ │ │ └── ExpenseService.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties └── solutions │ ├── expense-client │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── client │ │ │ └── ExpenseServiceClient.java │ │ │ ├── model │ │ │ └── Expense.java │ │ │ └── service │ │ │ └── ClientResource.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ ├── angular.min.js │ │ │ ├── index copy.html │ │ │ └── index.html │ │ └── application.properties │ └── expense-service │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── docker │ ├── Dockerfile.fast-jar │ ├── Dockerfile.jvm │ └── Dockerfile.native │ ├── java │ └── com │ │ └── redhat │ │ └── training │ │ ├── Expense.java │ │ ├── ExpenseResource.java │ │ └── ExpenseService.java │ └── resources │ ├── META-INF │ └── resources │ │ └── index.html │ └── application.properties ├── develop-review ├── apps │ └── microservice-speaker │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ └── speaker │ │ │ │ ├── Speaker.java │ │ │ │ └── SpeakerResource.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── acme │ │ │ └── conference │ │ │ └── speaker │ │ │ └── SpeakerResourceTest.java │ │ └── resources │ │ └── application.properties └── solutions │ └── microservice-speaker │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── speaker │ │ │ ├── Speaker.java │ │ │ ├── SpeakerResource.java │ │ │ └── Talk.java │ └── resources │ │ └── application.properties │ └── test │ ├── java │ └── org │ │ └── acme │ │ └── conference │ │ └── speaker │ │ └── SpeakerResourceTest.java │ └── resources │ └── application.properties ├── istio-tutorial ├── customer │ ├── .dockerignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── developer │ │ │ │ └── demos │ │ │ │ └── customer │ │ │ │ └── rest │ │ │ │ ├── BaggageHeadersFactory.java │ │ │ │ ├── CustomerResource.java │ │ │ │ └── PreferenceService.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── developer │ │ └── demos │ │ └── customer │ │ └── rest │ │ ├── CustomerResourceTest.java │ │ └── NativeCustomerResourceIT.java ├── parallel.sh ├── preference │ ├── .dockerignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── developer │ │ │ │ └── demos │ │ │ │ └── preference │ │ │ │ └── rest │ │ │ │ ├── BaggageHeadersFactory.java │ │ │ │ ├── PreferenceResource.java │ │ │ │ └── RecommendationService.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── developer │ │ └── demos │ │ └── preference │ │ └── rest │ │ ├── NativePreferenceResourceIT.java │ │ └── PreferenceResourceTest.java ├── recommendation │ ├── .dockerignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ └── java │ │ │ └── com │ │ │ └── redhat │ │ │ └── developer │ │ │ └── demos │ │ │ └── recommendation │ │ │ └── rest │ │ │ └── RecommendationResource.java │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── developer │ │ └── demos │ │ └── recommendation │ │ └── rest │ │ ├── NativeRecommendationResourceIT.java │ │ └── RecommendationResourceTest.java └── sequential.sh ├── monitor-logging ├── apps │ └── expenses │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.fast-jar │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ └── expense │ │ │ │ ├── Expense.java │ │ │ │ ├── ExpenseNotFoundException.java │ │ │ │ ├── ExpensesRepository.java │ │ │ │ └── ExpensesResource.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ └── expense │ │ └── ExpensesResourceTest.java └── solutions │ └── expenses │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.fast-jar │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── expense │ │ │ ├── Expense.java │ │ │ ├── ExpenseNotFoundException.java │ │ │ ├── ExpensesRepository.java │ │ │ └── ExpensesResource.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ └── expense │ └── ExpensesResourceTest.java ├── monitor-metrics ├── apps │ └── expense-service │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ ├── scripts │ │ └── simulate-traffic.sh │ │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.fast-jar │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── Expense.java │ │ │ ├── ExpenseResource.java │ │ │ └── ExpenseService.java │ │ └── resources │ │ └── application.properties └── solutions │ └── expense-service │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ ├── scripts │ └── simulate-traffic.sh │ └── src │ └── main │ ├── docker │ ├── Dockerfile.fast-jar │ ├── Dockerfile.jvm │ └── Dockerfile.native │ ├── java │ └── com │ │ └── redhat │ │ └── training │ │ ├── Expense.java │ │ ├── ExpenseResource.java │ │ └── ExpenseService.java │ └── resources │ └── application.properties ├── monitor-review ├── apps │ └── quarkus-conference │ │ ├── dashboard │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build │ │ │ ├── asset-manifest.json │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ ├── robots.txt │ │ │ └── static │ │ │ │ ├── css │ │ │ │ ├── main.2f1adcb4.css │ │ │ │ └── main.2f1adcb4.css.map │ │ │ │ ├── js │ │ │ │ ├── main.a35c982c.js │ │ │ │ ├── main.a35c982c.js.LICENSE.txt │ │ │ │ └── main.a35c982c.js.map │ │ │ │ └── media │ │ │ │ ├── RedHatDisplay-Bold.24515e9b56a0ccb45480.woff │ │ │ │ ├── RedHatDisplay-Bold.7b7bb91c0af148738090.woff2 │ │ │ │ ├── RedHatDisplay-Medium.09bac349bc9aa9b72bbe.woff2 │ │ │ │ ├── RedHatDisplay-Medium.732b5ddbe8d56f5462b6.woff │ │ │ │ ├── RedHatDisplay-Regular.4e58e730f447f9d6a422.woff2 │ │ │ │ ├── RedHatDisplay-Regular.77929aa7a8bd4b667229.woff │ │ │ │ ├── RedHatDisplay-updated-Bold.44d0c66e3d5040be8378.woff2 │ │ │ │ ├── RedHatDisplay-updated-Medium.3be6f9a55c75aaa6f25a.woff2 │ │ │ │ ├── RedHatDisplay-updated-Regular.e693bff1704e699eb7e2.woff2 │ │ │ │ ├── RedHatDisplayVF-updated-ItalicModified.909a870fdb828007557f.woff2 │ │ │ │ ├── RedHatDisplayVFModified-updated.2c5bc263ad288d815bd3.woff2 │ │ │ │ ├── RedHatMono-updated-Regular.9db3d5976ae23546bbec.woff2 │ │ │ │ ├── RedHatMonoVF-updated-Italic.f32577e5a5f1d27244a3.woff2 │ │ │ │ ├── RedHatMonoVF-updated.e3438b1458a26c814ae6.woff2 │ │ │ │ ├── RedHatText-Medium.0227c8bb038eaf0264f7.woff2 │ │ │ │ ├── RedHatText-Medium.47a03d213b0b35080e32.woff │ │ │ │ ├── RedHatText-Regular.4a43a00f1c0c63f396ee.woff2 │ │ │ │ ├── RedHatText-Regular.81aade5a7b362566b199.woff │ │ │ │ ├── RedHatText-updated-Medium.65deba23a8337b21a451.woff2 │ │ │ │ ├── RedHatText-updated-Regular.9ed5a0180961e3930d44.woff2 │ │ │ │ ├── RedHatTextVF-updated-ItalicModified.9abd7afa35218a435d29.woff2 │ │ │ │ ├── RedHatTextVFModified-updated.2aa8547fdf2f790c2cb9.woff2 │ │ │ │ ├── overpass-bold-italic.89a09f63411d174b18ea.woff2 │ │ │ │ ├── overpass-bold-italic.e7bea4af7086ce0144fc.woff │ │ │ │ ├── overpass-bold.8aae586c8c4d72be50c1.woff │ │ │ │ ├── overpass-bold.cf06a52fa81e76cc6b01.woff2 │ │ │ │ ├── overpass-extrabold-italic.190776b0696119b93c71.woff2 │ │ │ │ ├── overpass-extrabold-italic.800277ea3e98b616b60f.woff │ │ │ │ ├── overpass-extrabold.3cd11726d843ff40c40b.woff │ │ │ │ ├── overpass-extrabold.8584d6d2426caac44a12.woff2 │ │ │ │ ├── overpass-extralight-italic.269ca6c83388f975ccfa.woff2 │ │ │ │ ├── overpass-extralight-italic.bc0502ffc24dc33b8c5a.woff │ │ │ │ ├── overpass-extralight.60cc25d4be2d99536ede.woff2 │ │ │ │ ├── overpass-extralight.c0276d79b017a9c2476b.woff │ │ │ │ ├── overpass-heavy-italic.23fc486b36786bafb3d3.woff │ │ │ │ ├── overpass-heavy-italic.95fdf61ffc45f12737c2.woff2 │ │ │ │ ├── overpass-heavy.11855d3f3f99709dfac5.woff2 │ │ │ │ ├── overpass-heavy.e9d4a1e9285e4454ef7e.woff │ │ │ │ ├── overpass-italic.35d01efdc213d0af0d00.woff │ │ │ │ ├── overpass-italic.ab4371a522c3fce8ad2d.woff2 │ │ │ │ ├── overpass-light-italic.59058fe454d37a189fb9.woff2 │ │ │ │ ├── overpass-light-italic.ac78b4f2e64edfb5859a.woff │ │ │ │ ├── overpass-light.549231141115a61fa57d.woff │ │ │ │ ├── overpass-light.675eb11fb9e055cea6a4.woff2 │ │ │ │ ├── overpass-mono-bold.69bf841bb989a0010972.woff2 │ │ │ │ ├── overpass-mono-bold.7799d9401910e36d7bb2.woff │ │ │ │ ├── overpass-mono-light.99464515aba730eab16c.woff2 │ │ │ │ ├── overpass-mono-light.d6b6f0c7a2af826d139d.woff │ │ │ │ ├── overpass-mono-regular.7150021df2ae6bcf6c17.woff2 │ │ │ │ ├── overpass-mono-regular.db4223ab0faaec898da7.woff │ │ │ │ ├── overpass-mono-semibold.54b2e33870ba270ba774.woff2 │ │ │ │ ├── overpass-mono-semibold.88ade95ac9a035be7168.woff │ │ │ │ ├── overpass-regular.246cf166b6945bf1c584.woff2 │ │ │ │ ├── overpass-regular.817d3df17057373e2c46.woff │ │ │ │ ├── overpass-semibold-italic.323f30b3399fdc516b30.woff2 │ │ │ │ ├── overpass-semibold-italic.8d723ad7cfca2dfffacb.woff │ │ │ │ ├── overpass-semibold.164a0ab4c909b911c99b.woff │ │ │ │ ├── overpass-semibold.61142d93d0198cb3c160.woff2 │ │ │ │ ├── overpass-thin-italic.3278ae4a3a97d92b639c.woff2 │ │ │ │ ├── overpass-thin-italic.ac4ae66cc059959cf8b7.woff │ │ │ │ ├── overpass-thin.06037ca2cf8525d353a1.woff2 │ │ │ │ ├── overpass-thin.1904b4e1c18b4fc19778.woff │ │ │ │ ├── pfbg_2000.3b693db01ef2135e3f14.jpg │ │ │ │ ├── pfbg_576.b64efab6836e719c0e31.jpg │ │ │ │ ├── pfbg_576@2x.08322afb8640616a6228.jpg │ │ │ │ ├── pfbg_768.56faebeaec23b1c7d7d3.jpg │ │ │ │ ├── pfbg_768@2x.eea28e73c0df6dbbb1ff.jpg │ │ │ │ ├── pfbg_992@2x.30e8d31f821a144fe52c.jpg │ │ │ │ ├── pficon.2b875c0f6f6a759baaf9.woff │ │ │ │ ├── pficon.ff716624201ea7b8504d.woff2 │ │ │ │ └── status-icon-sprite.4fee9fefc3971799d2dd.svg │ │ ├── db.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── serve.py │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── Components │ │ │ │ ├── ErrorAlert.tsx │ │ │ │ ├── LoadingContent.tsx │ │ │ │ ├── Navigation.spec.tsx │ │ │ │ ├── Navigation.tsx │ │ │ │ ├── SessionList.spec.tsx │ │ │ │ ├── SessionList.tsx │ │ │ │ ├── SpeakerList.spec.tsx │ │ │ │ ├── SpeakerList.tsx │ │ │ │ ├── StarRating.tsx │ │ │ │ └── UserAlert.tsx │ │ │ ├── Images │ │ │ │ ├── placeholder.png │ │ │ │ └── training_white.png │ │ │ ├── Layout.tsx │ │ │ ├── Models │ │ │ │ ├── Session.ts │ │ │ │ ├── SessionRating.ts │ │ │ │ └── Speaker.ts │ │ │ ├── Pages │ │ │ │ ├── SessionDetailPage.spec.tsx │ │ │ │ ├── SessionDetailPage.tsx │ │ │ │ ├── SessionsPage.spec.tsx │ │ │ │ ├── SessionsPage.tsx │ │ │ │ ├── SpeakerDetailPage.tsx │ │ │ │ ├── SpeakersDetailPage.spec.tsx │ │ │ │ ├── SpeakersPage.spec.tsx │ │ │ │ └── SpeakersPage.tsx │ │ │ ├── Services │ │ │ │ ├── RESTClient.ts │ │ │ │ ├── SessionService.spec.ts │ │ │ │ ├── SessionService.ts │ │ │ │ ├── SpeakerService.spec.ts │ │ │ │ └── SpeakerService.ts │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── logo.svg │ │ │ ├── react-app-env.d.ts │ │ │ └── setupTests.ts │ │ └── tsconfig.json │ │ ├── sessions │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── docker │ │ │ │ ├── Dockerfile.jvm │ │ │ │ ├── Dockerfile.legacy-jar │ │ │ │ ├── Dockerfile.native │ │ │ │ └── Dockerfile.native-micro │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── redhat │ │ │ │ │ └── training │ │ │ │ │ ├── Session.java │ │ │ │ │ ├── SessionRepository.java │ │ │ │ │ ├── SessionResource.java │ │ │ │ │ ├── SessionStore.java │ │ │ │ │ ├── Speaker.java │ │ │ │ │ ├── SpeakerFromService.java │ │ │ │ │ └── SpeakerService.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── resources │ │ │ │ │ └── index.html │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── ConfigTestUtils.java │ │ │ ├── JaegerConfigTest.java │ │ │ ├── LoggingConfigTest.java │ │ │ └── MetricsTest.java │ │ └── speakers │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── Speaker.java │ │ │ │ ├── SpeakerFinder.java │ │ │ │ └── SpeakerResource.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── import.sql │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ ├── ConfigTestUtils.java │ │ ├── JaegerConfigTest.java │ │ └── SpeakerFinderTest.java └── solutions │ └── quarkus-conference │ ├── sessions │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── Session.java │ │ │ │ ├── SessionRepository.java │ │ │ │ ├── SessionResource.java │ │ │ │ ├── SessionStore.java │ │ │ │ ├── Speaker.java │ │ │ │ ├── SpeakerFromService.java │ │ │ │ └── SpeakerService.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ ├── ConfigTestUtils.java │ │ ├── JaegerConfigTest.java │ │ ├── LoggingConfigTest.java │ │ └── MetricsTest.java │ └── speakers │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── Speaker.java │ │ │ ├── SpeakerFinder.java │ │ │ └── SpeakerResource.java │ └── resources │ │ ├── META-INF │ │ ├── import.sql │ │ └── resources │ │ │ └── index.html │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ ├── ConfigTestUtils.java │ ├── JaegerConfigTest.java │ ├── LoggingConfigTest.java │ └── SpeakerFinderTest.java ├── monitor-trace ├── apps │ └── quarkus-calculator │ │ ├── .gitkeep │ │ ├── add-tracing.sh │ │ ├── adder │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── AdderResource.java │ │ │ │ └── service │ │ │ │ ├── AdderService.java │ │ │ │ └── SolverService.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ ├── jaeger.sh │ │ ├── multiplier │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── MultiplierResource.java │ │ │ │ └── service │ │ │ │ ├── MultiplierService.java │ │ │ │ └── SolverService.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ ├── solver │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── SolverResource.java │ │ │ │ └── service │ │ │ │ ├── AdderService.java │ │ │ │ ├── MultiplierService.java │ │ │ │ └── SolverService.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── start.sh └── solutions │ └── quarkus-calculator │ ├── .gitkeep │ ├── add-tracing.sh │ ├── adder │ ├── .dockerignore │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── AdderResource.java │ │ │ └── service │ │ │ ├── AdderService.java │ │ │ └── SolverService.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties │ ├── jaeger.sh │ ├── multiplier │ ├── .dockerignore │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── MultiplierResource.java │ │ │ └── service │ │ │ ├── MultiplierService.java │ │ │ └── SolverService.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties │ ├── solver │ ├── .dockerignore │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── SolverResource.java │ │ │ └── service │ │ │ ├── AdderService.java │ │ │ ├── MultiplierService.java │ │ │ └── SolverService.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties │ └── start.sh ├── mvn-offline-mode.sh ├── quarkus-calculator-monolith ├── .dockerignore ├── .gitignore ├── pom.xml └── src │ └── main │ ├── docker │ ├── Dockerfile.jvm │ └── Dockerfile.native │ ├── java │ └── com │ │ └── redhat │ │ └── training │ │ ├── SolverResource.java │ │ └── service │ │ └── SolverService.java │ └── resources │ ├── META-INF │ └── resources │ │ └── index.html │ └── application.properties ├── quarkus-calculator ├── .project ├── .settings │ └── org.eclipse.m2e.core.prefs ├── adder │ ├── .dockerignore │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── AdderResource.java │ │ │ └── service │ │ │ ├── AdderService.java │ │ │ └── SolverService.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties ├── create-projects.sh ├── multiplier │ ├── .dockerignore │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── MultiplierResource.java │ │ │ └── service │ │ │ ├── MultiplierService.java │ │ │ └── SolverService.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties ├── solver │ ├── .dockerignore │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── SolverResource.java │ │ │ └── service │ │ │ ├── AdderService.java │ │ │ ├── MultiplierService.java │ │ │ └── SolverService.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties └── start-locally.sh ├── quarkus-conference ├── microservice-schedule │ ├── .dockerignore │ ├── .factorypath │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.derby │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.native │ │ │ └── Makefile │ │ ├── java │ │ │ └── org │ │ │ │ └── acme │ │ │ │ └── conference │ │ │ │ └── schedule │ │ │ │ ├── LivenessCheck.java │ │ │ │ ├── ReadinessCheck.java │ │ │ │ ├── Schedule.java │ │ │ │ └── ScheduleResource.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── import-test.sql │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── org │ │ └── acme │ │ └── conference │ │ └── schedule │ │ ├── NativeScheduleResourceIT.java │ │ └── ScheduleResourceTest.java ├── microservice-session │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ ├── java │ │ │ └── org │ │ │ │ └── acme │ │ │ │ └── conference │ │ │ │ └── session │ │ │ │ ├── LivenessCheck.java │ │ │ │ ├── ReadinessCheck.java │ │ │ │ ├── Session.java │ │ │ │ ├── SessionRepository.java │ │ │ │ ├── SessionResource.java │ │ │ │ ├── SessionStore.java │ │ │ │ ├── Speaker.java │ │ │ │ ├── SpeakerFromService.java │ │ │ │ ├── SpeakerRepository.java │ │ │ │ └── SpeakerService.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── import-test.sql │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── acme │ │ │ └── conference │ │ │ └── session │ │ │ ├── SessionFakeFactory.java │ │ │ ├── SessionResourceTest.java │ │ │ └── SessionStoreTest.java │ │ └── resources │ │ └── application.properties ├── microservice-speaker │ ├── .dockerignore │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ └── maven-wrapper.properties │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ ├── java │ │ │ └── org │ │ │ │ └── acme │ │ │ │ └── conference │ │ │ │ └── speaker │ │ │ │ ├── Speaker.java │ │ │ │ ├── SpeakerDAO.java │ │ │ │ └── SpeakerResource.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── import.sql │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── org │ │ └── acme │ │ └── conference │ │ └── speaker │ │ ├── NativeSpeakerResourceIT.java │ │ └── SpeakerResourceTest.java ├── microservice-vote │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ ├── java │ │ │ └── org │ │ │ │ └── acme │ │ │ │ └── conference │ │ │ │ └── vote │ │ │ │ ├── Attendee.java │ │ │ │ ├── AttendeeDAO.java │ │ │ │ ├── AttendeeRequestValidator.java │ │ │ │ ├── AttendeeResource.java │ │ │ │ ├── AttendeeStore.java │ │ │ │ ├── HelloResource.java │ │ │ │ ├── RatingResource.java │ │ │ │ ├── RatingStatsResource.java │ │ │ │ ├── SessionRating.java │ │ │ │ └── SessionRatingDAO.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ ├── io │ │ └── quarkus │ │ │ └── test │ │ │ └── mongo │ │ │ └── MongoDatabaseTestResource.java │ │ └── org │ │ └── acme │ │ └── conference │ │ └── vote │ │ ├── AttendeeDataForgery.java │ │ ├── AttendeeRequestValidatorTest.java │ │ ├── AttendeeResourceTest.java │ │ ├── HelloResourceTest.java │ │ ├── NativeVoteResourceIT.java │ │ ├── RatingResourceTest.java │ │ ├── RatingStatsResourceTest.java │ │ └── SessionRatingDataForgery.java ├── parallel.sh ├── pom.xml ├── sequential.sh ├── service-toggle.sh └── web-app │ ├── .env │ ├── .env.production │ ├── .eslintrc │ ├── .gitignore │ ├── .prettierrc │ ├── Jenkinsfile │ ├── README.md │ ├── db.js │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── routes.json │ ├── src │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── Components │ │ ├── ErrorAlert.tsx │ │ ├── LoadingContent.tsx │ │ ├── Navigation.spec.tsx │ │ ├── Navigation.tsx │ │ ├── ScheduleList.tsx │ │ ├── SessionList.spec.tsx │ │ ├── SessionList.tsx │ │ ├── SpeakerList.spec.tsx │ │ ├── SpeakerList.tsx │ │ ├── StarRating.tsx │ │ └── UserAlert.tsx │ ├── Images │ │ ├── placeholder.png │ │ └── training_white.png │ ├── Layout.tsx │ ├── Models │ │ ├── Schedule.ts │ │ ├── Session.ts │ │ ├── SessionRating.ts │ │ └── Speaker.ts │ ├── Pages │ │ ├── ScheduleDetailPage.tsx │ │ ├── SchedulesPage.spec.tsx │ │ ├── SchedulesPage.tsx │ │ ├── SessionDetailPage.spec.tsx │ │ ├── SessionDetailPage.tsx │ │ ├── SessionsPage.spec.tsx │ │ ├── SessionsPage.tsx │ │ ├── SpeakerDetailPage.tsx │ │ ├── SpeakersDetailPage.spec.tsx │ │ ├── SpeakersPage.spec.tsx │ │ └── SpeakersPage.tsx │ ├── Services │ │ ├── RESTClient.ts │ │ ├── ScheduleService.spec.ts │ │ ├── ScheduleService.ts │ │ ├── SessionService.spec.ts │ │ ├── SessionService.ts │ │ ├── SpeakerService.spec.ts │ │ ├── SpeakerService.ts │ │ ├── VoteService.spec.ts │ │ └── VoteService.ts │ ├── index.css │ ├── index.tsx │ ├── react-app-env.d.ts │ ├── serviceWorker.ts │ └── setupTests.ts │ ├── tsconfig.json │ └── yarn.lock ├── reactive-architecture ├── apps │ ├── prices │ │ ├── .gitignore │ │ ├── Containerfile │ │ ├── README.md │ │ ├── app.py │ │ ├── push_image.sh │ │ └── requirements.txt │ └── products │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── benchmark.sh │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── Price.java │ │ │ ├── PricesService.java │ │ │ ├── ProductPriceHistory.java │ │ │ └── ProductsResource.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties └── solutions │ └── products │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── benchmark.sh │ ├── pom.xml │ └── src │ └── main │ ├── docker │ ├── Dockerfile.jvm │ ├── Dockerfile.legacy-jar │ ├── Dockerfile.native │ └── Dockerfile.native-micro │ ├── java │ └── com │ │ └── redhat │ │ └── training │ │ ├── Price.java │ │ ├── PricesService.java │ │ ├── ProductPriceHistory.java │ │ └── ProductsResource.java │ └── resources │ ├── META-INF │ └── resources │ │ └── index.html │ └── application.properties ├── reactive-develop ├── apps │ └── suggestions │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── .gitignore │ │ │ ├── MavenWrapperDownloader.java │ │ │ └── maven-wrapper.properties │ │ ├── README.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── Suggestion.java │ │ │ │ └── SuggestionResource.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ ├── SuggestionResourceIT.java │ │ └── SuggestionResourceTest.java └── solutions │ └── suggestions │ ├── .dockerignore │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── .gitignore │ │ ├── MavenWrapperDownloader.java │ │ └── maven-wrapper.properties │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── Suggestion.java │ │ │ └── SuggestionResource.java │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ ├── SuggestionResourceIT.java │ └── SuggestionResourceTest.java ├── reactive-eda ├── apps │ ├── fraud-detector │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── docker │ │ │ │ ├── Dockerfile.jvm │ │ │ │ ├── Dockerfile.legacy-jar │ │ │ │ ├── Dockerfile.native │ │ │ │ └── Dockerfile.native-micro │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── redhat │ │ │ │ │ └── training │ │ │ │ │ ├── event │ │ │ │ │ ├── BankAccountWasCreated.java │ │ │ │ │ ├── HighRiskAccountWasDetected.java │ │ │ │ │ └── LowRiskAccountWasDetected.java │ │ │ │ │ ├── reactive │ │ │ │ │ └── FraudProcessor.java │ │ │ │ │ └── serde │ │ │ │ │ └── BankAccountWasCreatedDeserializer.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── FraudScoreNotificationTest.java │ │ │ └── KafkaTestResourceLifecycleManager.java │ └── red-hat-bank │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── event │ │ │ │ └── .gitkeep │ │ │ │ ├── model │ │ │ │ └── BankAccount.java │ │ │ │ ├── reactive │ │ │ │ └── AccountTypeProcessor.java │ │ │ │ ├── resource │ │ │ │ └── BankAccountsResource.java │ │ │ │ └── serde │ │ │ │ └── .gitkeep │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ ├── angular.min.js │ │ │ │ ├── css │ │ │ │ ├── style.css │ │ │ │ └── wing.css │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ ├── AccountTypeProcessorTest.java │ │ ├── BankAccountsResourceTest.java │ │ └── KafkaTestResourceLifecycleManager.java └── solutions │ ├── fraud-detector │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── event │ │ │ │ ├── BankAccountWasCreated.java │ │ │ │ ├── HighRiskAccountWasDetected.java │ │ │ │ └── LowRiskAccountWasDetected.java │ │ │ │ ├── reactive │ │ │ │ └── FraudProcessor.java │ │ │ │ └── serde │ │ │ │ └── BankAccountWasCreatedDeserializer.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ ├── FraudScoreNotificationTest.java │ │ └── KafkaTestResourceLifecycleManager.java │ └── red-hat-bank │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── event │ │ │ └── BankAccountWasCreated.java │ │ │ ├── model │ │ │ └── BankAccount.java │ │ │ ├── reactive │ │ │ └── AccountTypeProcessor.java │ │ │ ├── resource │ │ │ └── BankAccountsResource.java │ │ │ └── serde │ │ │ └── BankAccountWasCreatedDeserializer.java │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ ├── angular.min.js │ │ │ ├── css │ │ │ ├── style.css │ │ │ └── wing.css │ │ │ └── index.html │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ ├── AccountTypeProcessorTest.java │ ├── BankAccountsResourceTest.java │ └── KafkaTestResourceLifecycleManager.java ├── reactive-review ├── apps │ └── reactive-speaker │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── event │ │ │ │ ├── EmployeeSignedUp.java │ │ │ │ ├── SpeakerWasCreated.java │ │ │ │ └── UpstreamMemberSignedUp.java │ │ │ │ ├── model │ │ │ │ ├── Affiliation.java │ │ │ │ └── Speaker.java │ │ │ │ ├── reactive │ │ │ │ └── NewSpeakersProcessor.java │ │ │ │ ├── resource │ │ │ │ └── SpeakerResource.java │ │ │ │ └── serde │ │ │ │ └── .gitkeep │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ ├── KafkaTestResourceLifecycleManager.java │ │ ├── NativeSpeakerResourceIT.java │ │ ├── ReactiveMessagingTest.java │ │ └── SpeakerResourceTest.java └── solutions │ └── reactive-speaker │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── event │ │ │ ├── EmployeeSignedUp.java │ │ │ ├── SpeakerWasCreated.java │ │ │ └── UpstreamMemberSignedUp.java │ │ │ ├── model │ │ │ ├── Affiliation.java │ │ │ └── Speaker.java │ │ │ ├── reactive │ │ │ └── NewSpeakersProcessor.java │ │ │ ├── resource │ │ │ └── SpeakerResource.java │ │ │ └── serde │ │ │ └── SpeakerWasCreatedDeserializer.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ ├── KafkaTestResourceLifecycleManager.java │ ├── NativeSpeakerResourceIT.java │ ├── ReactiveMessagingTest.java │ └── SpeakerResourceTest.java ├── secure-jwt ├── apps │ └── expenses │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.fast-jar │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── expense │ │ │ │ ├── AdminResource.java │ │ │ │ ├── Expense.java │ │ │ │ ├── ExpensesService.java │ │ │ │ └── UserResource.java │ │ │ │ └── jwt │ │ │ │ ├── JwtGenerator.java │ │ │ │ └── JwtResource.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ ├── expense │ │ ├── AdminResourceTest.java │ │ └── UserResourceTest.java │ │ └── jwt │ │ └── JwtGeneratorTest.java └── solutions │ └── expenses │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.fast-jar │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── expense │ │ │ ├── AdminResource.java │ │ │ ├── Expense.java │ │ │ ├── ExpensesService.java │ │ │ └── UserResource.java │ │ │ └── jwt │ │ │ ├── JwtGenerator.java │ │ │ └── JwtResource.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ ├── expense │ ├── AdminResourceTest.java │ └── UserResourceTest.java │ └── jwt │ └── JwtGeneratorTest.java ├── secure-review ├── apps │ └── quarkus-conference │ │ ├── speaker-dashboard │ │ ├── Containerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── AppLayout.tsx │ │ │ │ ├── app.css │ │ │ │ ├── components │ │ │ │ │ ├── CreateUserModal.tsx │ │ │ │ │ ├── Dashboard.tsx │ │ │ │ │ └── SpeakerCard.tsx │ │ │ │ ├── images │ │ │ │ │ ├── avatarImg.svg │ │ │ │ │ └── training_white.png │ │ │ │ ├── index.tsx │ │ │ │ ├── models │ │ │ │ │ └── Speaker.ts │ │ │ │ └── services │ │ │ │ │ ├── API.ts │ │ │ │ │ ├── SpeakersService.ts │ │ │ │ │ └── keycloak.js │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── index.tsx │ │ │ └── typings.d.ts │ │ ├── stylePaths.js │ │ ├── tsconfig.json │ │ ├── webpack.common.js │ │ ├── webpack.dev.js │ │ └── webpack.prod.js │ │ └── speaker │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── Speaker.java │ │ │ │ └── SpeakerResource.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── import.sql │ │ │ └── resources │ │ │ │ ├── index.html │ │ │ │ └── styles.css │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ ├── ConfigTest.java │ │ ├── CorsTest.java │ │ ├── NativeSpeakerResourceIT.java │ │ └── SpeakerResourceTest.java └── solutions │ └── quarkus-conference │ └── speaker │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── Speaker.java │ │ │ └── SpeakerResource.java │ └── resources │ │ ├── META-INF │ │ ├── import.sql │ │ └── resources │ │ │ ├── index.html │ │ │ └── styles.css │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ ├── ConfigTest.java │ ├── CorsTest.java │ ├── NativeSpeakerResourceIT.java │ └── SpeakerResourceTest.java ├── secure-sso ├── apps │ └── expense │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── get_token.sh │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── expenses │ │ │ │ ├── Expense.java │ │ │ │ ├── ExpenseConfiguration.java │ │ │ │ ├── ExpenseResource.java │ │ │ │ └── ExpenseValidator.java │ │ │ │ └── oidc │ │ │ │ └── OidcResource.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── import.sql │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ └── expenses │ │ ├── ExpenseCreationIT.java │ │ ├── ExpenseCreationTest.java │ │ └── ExpenseValidationTest.java └── solutions │ └── expense │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── expenses │ │ │ ├── Expense.java │ │ │ ├── ExpenseConfiguration.java │ │ │ ├── ExpenseResource.java │ │ │ └── ExpenseValidator.java │ │ │ └── oidc │ │ │ └── OidcResource.java │ └── resources │ │ ├── META-INF │ │ ├── import.sql │ │ └── resources │ │ │ └── index.html │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ └── expenses │ ├── ExpenseCreationIT.java │ ├── ExpenseCreationTest.java │ └── ExpenseValidationTest.java ├── sync-images.sh ├── test-devservices ├── apps │ └── expense-service │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ └── maven-wrapper.properties │ │ ├── README.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.fast-jar │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── model │ │ │ │ ├── Associate.java │ │ │ │ └── Expense.java │ │ │ │ └── rest │ │ │ │ ├── AssociateResource.java │ │ │ │ └── ExpenseResource.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ ├── application.properties │ │ │ └── import.sql │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ └── rest │ │ └── AssociateResourceTest.java └── solutions │ └── expense-service │ ├── .dockerignore │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ └── maven-wrapper.properties │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.fast-jar │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── model │ │ │ ├── Associate.java │ │ │ └── Expense.java │ │ │ └── rest │ │ │ ├── AssociateResource.java │ │ │ └── ExpenseResource.java │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ ├── application.properties │ │ └── import.sql │ └── test │ └── java │ └── com │ └── redhat │ └── training │ └── rest │ ├── AssociateResourceTest.java │ ├── PostgresDBTestResource.java │ └── WithPostgresDB.java ├── test-mock ├── apps │ └── expenses-service │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.fast-jar │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ └── expense │ │ │ │ ├── Expense.java │ │ │ │ ├── ExpenseResource.java │ │ │ │ ├── ExpenseService.java │ │ │ │ ├── FraudScore.java │ │ │ │ └── FraudScoreService.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ └── expense │ │ ├── CrudTest.java │ │ ├── PanacheMockTest.java │ │ ├── RestClientMockTest.java │ │ ├── ServiceMockTest.java │ │ └── SpyTest.java └── solutions │ └── expenses-service │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.fast-jar │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── expense │ │ │ ├── Expense.java │ │ │ ├── ExpenseResource.java │ │ │ ├── ExpenseService.java │ │ │ ├── FraudScore.java │ │ │ └── FraudScoreService.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ └── expense │ ├── CrudTest.java │ ├── ExpenseServiceMock.java │ ├── PanacheMockTest.java │ ├── RestClientMockTest.java │ ├── ServiceMockTest.java │ └── SpyTest.java ├── test-review ├── apps │ ├── schedule │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── docker │ │ │ │ ├── Dockerfile.derby │ │ │ │ ├── Dockerfile.jvm │ │ │ │ ├── Dockerfile.legacy-jar │ │ │ │ ├── Dockerfile.native │ │ │ │ └── Dockerfile.native-micro │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── redhat │ │ │ │ │ └── training │ │ │ │ │ └── conference │ │ │ │ │ ├── LivenessCheck.java │ │ │ │ │ ├── ReadinessCheck.java │ │ │ │ │ ├── Schedule.java │ │ │ │ │ └── ScheduleResource.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── resources │ │ │ │ │ └── index.html │ │ │ │ ├── application.properties │ │ │ │ └── import.sql │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── conference │ │ │ ├── NativeScheduleResourceIT.java │ │ │ └── ScheduleResourceTest.java │ ├── session │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── docker │ │ │ │ ├── Dockerfile.jvm │ │ │ │ └── Dockerfile.native │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── redhat │ │ │ │ │ └── training │ │ │ │ │ └── conference │ │ │ │ │ ├── session │ │ │ │ │ ├── Session.java │ │ │ │ │ ├── SessionResource.java │ │ │ │ │ ├── SessionStore.java │ │ │ │ │ └── SessionWithSpeaker.java │ │ │ │ │ └── speaker │ │ │ │ │ ├── Speaker.java │ │ │ │ │ └── SpeakerService.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ ├── import-test.sql │ │ │ │ └── resources │ │ │ │ │ └── index.html │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── conference │ │ │ └── session │ │ │ └── SessionResourceTest.java │ └── speaker │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ └── speaker │ │ │ │ ├── Speaker.java │ │ │ │ ├── SpeakerDAO.java │ │ │ │ ├── SpeakerResource.java │ │ │ │ ├── Talk.java │ │ │ │ └── idgenerator │ │ │ │ ├── IdGenerator.java │ │ │ │ └── RandomIdGenerator.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ ├── application.properties │ │ │ └── import.sql │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ └── speaker │ │ ├── DeterministicIdGenerator.java │ │ └── SpeakerResourceTest.java └── solutions │ ├── schedule │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.derby │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ └── conference │ │ │ │ ├── LivenessCheck.java │ │ │ │ ├── ReadinessCheck.java │ │ │ │ ├── Schedule.java │ │ │ │ └── ScheduleResource.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ ├── application.properties │ │ │ └── import.sql │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ └── conference │ │ ├── NativeScheduleResourceIT.java │ │ └── ScheduleResourceTest.java │ ├── session │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ └── conference │ │ │ │ ├── session │ │ │ │ ├── Session.java │ │ │ │ ├── SessionResource.java │ │ │ │ ├── SessionStore.java │ │ │ │ └── SessionWithSpeaker.java │ │ │ │ └── speaker │ │ │ │ ├── Speaker.java │ │ │ │ └── SpeakerService.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── import-test.sql │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ └── conference │ │ └── session │ │ └── SessionResourceTest.java │ └── speaker │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── speaker │ │ │ ├── Speaker.java │ │ │ ├── SpeakerDAO.java │ │ │ ├── SpeakerResource.java │ │ │ ├── Talk.java │ │ │ └── idgenerator │ │ │ ├── IdGenerator.java │ │ │ └── RandomIdGenerator.java │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ ├── application.properties │ │ └── import.sql │ └── test │ └── java │ └── com │ └── redhat │ └── training │ └── speaker │ ├── DeterministicIdGenerator.java │ └── SpeakerResourceTest.java ├── test-unit ├── apps │ └── expense-restful-service │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ └── expenses │ │ │ │ ├── Expense.java │ │ │ │ ├── ExpenseConfiguration.java │ │ │ │ ├── ExpenseResource.java │ │ │ │ └── ExpenseValidator.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ └── expenses │ │ ├── ExpenseCreationTest.java │ │ └── ExpenseValidationTest.java └── solutions │ └── expense-restful-service │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── expenses │ │ │ ├── Expense.java │ │ │ ├── ExpenseConfiguration.java │ │ │ ├── ExpenseResource.java │ │ │ └── ExpenseValidator.java │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ └── expenses │ ├── ExpenseCreationTest.java │ └── ExpenseValidationTest.java ├── tolerance-health ├── apps │ └── quarkus-calculator │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── CrashResource.java │ │ │ ├── LivenessHealthResource.java │ │ │ ├── ReadinessHealthResource.java │ │ │ ├── SolverResource.java │ │ │ └── service │ │ │ ├── SolverService.java │ │ │ └── StateService.java │ │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties └── solutions │ └── quarkus-calculator │ ├── .dockerignore │ ├── .gitignore │ ├── pom.xml │ └── src │ └── main │ ├── docker │ ├── Dockerfile.jvm │ ├── Dockerfile.legacy-jar │ ├── Dockerfile.native │ └── Dockerfile.native-micro │ ├── java │ └── com │ │ └── redhat │ │ └── training │ │ ├── CrashResource.java │ │ ├── LivenessHealthResource.java │ │ ├── ReadinessHealthResource.java │ │ ├── SolverResource.java │ │ └── service │ │ ├── SolverService.java │ │ └── StateService.java │ └── resources │ ├── META-INF │ └── resources │ │ └── index.html │ └── application.properties ├── tolerance-policies ├── apps │ └── monitor │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── pom.xml │ │ ├── predict_many.sh │ │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ ├── MonitorResource.java │ │ │ │ ├── cpu │ │ │ │ ├── CpuPredictionService.java │ │ │ │ ├── CpuStats.java │ │ │ │ └── CpuStatsService.java │ │ │ │ ├── status │ │ │ │ └── StatusService.java │ │ │ │ └── sysinfo │ │ │ │ ├── Info.java │ │ │ │ └── InfoService.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ ├── MonitorResourceTest.java │ │ └── NativeInfoResourceIT.java └── solutions │ └── monitor │ ├── .dockerignore │ ├── .gitignore │ ├── pom.xml │ ├── predict_many.sh │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ ├── Dockerfile.legacy-jar │ │ ├── Dockerfile.native │ │ └── Dockerfile.native-micro │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ ├── MonitorResource.java │ │ │ ├── cpu │ │ │ ├── CpuPredictionService.java │ │ │ ├── CpuStats.java │ │ │ └── CpuStatsService.java │ │ │ ├── status │ │ │ └── StatusService.java │ │ │ └── sysinfo │ │ │ ├── Info.java │ │ │ └── InfoService.java │ └── resources │ │ ├── META-INF │ │ └── resources │ │ │ └── index.html │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ ├── MonitorResourceTest.java │ └── NativeInfoResourceIT.java └── tolerance-review ├── apps ├── pom.xml ├── session │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ └── Dockerfile.native │ │ ├── java │ │ │ └── com │ │ │ │ └── redhat │ │ │ │ └── training │ │ │ │ └── conference │ │ │ │ └── session │ │ │ │ ├── LivenessCheck.java │ │ │ │ ├── ReadinessCheck.java │ │ │ │ ├── Session.java │ │ │ │ ├── SessionRepository.java │ │ │ │ ├── SessionResource.java │ │ │ │ ├── SessionStore.java │ │ │ │ ├── Speaker.java │ │ │ │ ├── SpeakerFromService.java │ │ │ │ ├── SpeakerRepository.java │ │ │ │ └── SpeakerService.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── import-test.sql │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── redhat │ │ └── training │ │ └── conference │ │ └── session │ │ └── SessionResourceTest.java └── speaker │ ├── .dockerignore │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ └── maven-wrapper.properties │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── conference │ │ │ └── speaker │ │ │ ├── Speaker.java │ │ │ ├── SpeakerDAO.java │ │ │ └── SpeakerResource.java │ └── resources │ │ ├── META-INF │ │ ├── import.sql │ │ └── resources │ │ │ └── index.html │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ └── conference │ └── speaker │ ├── NativeSpeakerResourceIT.java │ └── SpeakerResourceTest.java └── solutions ├── pom.xml ├── session ├── .dockerignore ├── .gitignore ├── README.md ├── pom.xml └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ ├── java │ │ └── com │ │ │ └── redhat │ │ │ └── training │ │ │ └── conference │ │ │ └── session │ │ │ ├── LivenessCheck.java │ │ │ ├── ReadinessCheck.java │ │ │ ├── Session.java │ │ │ ├── SessionRepository.java │ │ │ ├── SessionResource.java │ │ │ ├── SessionStore.java │ │ │ ├── Speaker.java │ │ │ ├── SpeakerFromService.java │ │ │ ├── SpeakerRepository.java │ │ │ └── SpeakerService.java │ └── resources │ │ ├── META-INF │ │ └── import-test.sql │ │ └── application.properties │ └── test │ └── java │ └── com │ └── redhat │ └── training │ └── conference │ └── session │ └── SessionResourceTest.java └── speaker ├── .dockerignore ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── docker │ ├── Dockerfile.jvm │ └── Dockerfile.native ├── java │ └── com │ │ └── redhat │ │ └── training │ │ └── conference │ │ └── speaker │ │ ├── Speaker.java │ │ ├── SpeakerDAO.java │ │ └── SpeakerResource.java └── resources │ ├── META-INF │ ├── import.sql │ └── resources │ │ └── index.html │ └── application.properties └── test └── java └── com └── redhat └── training └── conference └── speaker ├── NativeSpeakerResourceIT.java └── SpeakerResourceTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/README.md -------------------------------------------------------------------------------- /comprehensive-review/apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/README.md -------------------------------------------------------------------------------- /comprehensive-review/apps/materials/ParkGuard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/materials/ParkGuard.java -------------------------------------------------------------------------------- /comprehensive-review/apps/materials/auth/AuthResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/materials/auth/AuthResource.java -------------------------------------------------------------------------------- /comprehensive-review/apps/materials/auth/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/materials/auth/UserService.java -------------------------------------------------------------------------------- /comprehensive-review/apps/materials/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/materials/import.sql -------------------------------------------------------------------------------- /comprehensive-review/apps/materials/weather/WeatherWarning.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/materials/weather/WeatherWarning.java -------------------------------------------------------------------------------- /comprehensive-review/apps/materials/weather/WeatherWarningLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/materials/weather/WeatherWarningLevel.java -------------------------------------------------------------------------------- /comprehensive-review/apps/materials/weather/WeatherWarningType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/materials/weather/WeatherWarningType.java -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/.editorconfig -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/.eslintrc -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/.gitignore -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/.prettierrc -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/.vscode/settings.json -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/LICENSE -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/README.md -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/fonts/overpass-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/fonts/overpass-bold.woff -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/fonts/overpass-thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/fonts/overpass-thin.woff -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/fonts/pficon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/fonts/pficon.woff -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/fonts/pficon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/fonts/pficon.woff2 -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/images/favicon.ico -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/images/pfbg_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/images/pfbg_2000.jpg -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/images/pfbg_576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/images/pfbg_576.jpg -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/images/pfbg_576@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/images/pfbg_576@2x.jpg -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/images/pfbg_768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/images/pfbg_768.jpg -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/images/pfbg_768@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/images/pfbg_768@2x.jpg -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/images/pfbg_992@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/images/pfbg_992@2x.jpg -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/index.html -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/main.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/main.bundle.js -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/main.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/main.bundle.js.map -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/main.css -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/dist/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/dist/main.css.map -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/fake-backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/fake-backend.js -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/package-lock.json -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/package.json -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/serve.py -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/app/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/app/AppLayout.tsx -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/app/app.css -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/app/images/avatarImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/app/images/avatarImg.svg -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/app/index.tsx -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/app/models/Park.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/app/models/Park.ts -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/app/models/ParkEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/app/models/ParkEvent.ts -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/app/models/RecentList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/app/models/RecentList.ts -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/app/models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/app/models/User.ts -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/app/services/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/app/services/API.ts -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/favicon.ico -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/favicon.png -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/index.html -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/index.tsx -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/src/typings.d.ts -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/stylePaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/stylePaths.js -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/tsconfig.json -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/webpack.common.js -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/webpack.dev.js -------------------------------------------------------------------------------- /comprehensive-review/apps/parks-dashboard/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/parks-dashboard/webpack.prod.js -------------------------------------------------------------------------------- /comprehensive-review/apps/weather/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/weather/.dockerignore -------------------------------------------------------------------------------- /comprehensive-review/apps/weather/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/weather/.gitignore -------------------------------------------------------------------------------- /comprehensive-review/apps/weather/.mvn/wrapper/.gitignore: -------------------------------------------------------------------------------- 1 | maven-wrapper.jar 2 | -------------------------------------------------------------------------------- /comprehensive-review/apps/weather/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/weather/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /comprehensive-review/apps/weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/weather/README.md -------------------------------------------------------------------------------- /comprehensive-review/apps/weather/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/weather/mvnw -------------------------------------------------------------------------------- /comprehensive-review/apps/weather/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/weather/mvnw.cmd -------------------------------------------------------------------------------- /comprehensive-review/apps/weather/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/weather/pom.xml -------------------------------------------------------------------------------- /comprehensive-review/apps/weather/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/weather/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /comprehensive-review/apps/weather/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/weather/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /comprehensive-review/apps/weather/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/apps/weather/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /comprehensive-review/solutions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/solutions/README.md -------------------------------------------------------------------------------- /comprehensive-review/solutions/parks/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/solutions/parks/.dockerignore -------------------------------------------------------------------------------- /comprehensive-review/solutions/parks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/solutions/parks/.gitignore -------------------------------------------------------------------------------- /comprehensive-review/solutions/parks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/solutions/parks/README.md -------------------------------------------------------------------------------- /comprehensive-review/solutions/parks/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/solutions/parks/pom.xml -------------------------------------------------------------------------------- /comprehensive-review/solutions/parks/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/solutions/parks/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /comprehensive-review/solutions/parks/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/solutions/parks/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /comprehensive-review/solutions/parks/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/solutions/parks/src/main/resources/import.sql -------------------------------------------------------------------------------- /comprehensive-review/solutions/parks/src/main/resources/privateKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/solutions/parks/src/main/resources/privateKey.pem -------------------------------------------------------------------------------- /comprehensive-review/solutions/parks/src/main/resources/publicKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/comprehensive-review/solutions/parks/src/main/resources/publicKey.pem -------------------------------------------------------------------------------- /deploy-openshift/apps/expense/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/apps/expense/.dockerignore -------------------------------------------------------------------------------- /deploy-openshift/apps/expense/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/apps/expense/.gitignore -------------------------------------------------------------------------------- /deploy-openshift/apps/expense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/apps/expense/README.md -------------------------------------------------------------------------------- /deploy-openshift/apps/expense/kubefiles/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/apps/expense/kubefiles/app.yaml -------------------------------------------------------------------------------- /deploy-openshift/apps/expense/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/apps/expense/pom.xml -------------------------------------------------------------------------------- /deploy-openshift/apps/expense/post_expense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/apps/expense/post_expense.sh -------------------------------------------------------------------------------- /deploy-openshift/apps/expense/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/apps/expense/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /deploy-openshift/apps/expense/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/apps/expense/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /deploy-openshift/apps/expense/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/apps/expense/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /deploy-openshift/apps/expense/src/main/docker/Dockerfile.native-micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/apps/expense/src/main/docker/Dockerfile.native-micro -------------------------------------------------------------------------------- /deploy-openshift/apps/expense/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/apps/expense/src/main/resources/application.properties -------------------------------------------------------------------------------- /deploy-openshift/solutions/expense/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/solutions/expense/.dockerignore -------------------------------------------------------------------------------- /deploy-openshift/solutions/expense/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/solutions/expense/.gitignore -------------------------------------------------------------------------------- /deploy-openshift/solutions/expense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/solutions/expense/README.md -------------------------------------------------------------------------------- /deploy-openshift/solutions/expense/kubefiles/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/solutions/expense/kubefiles/app.yaml -------------------------------------------------------------------------------- /deploy-openshift/solutions/expense/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/solutions/expense/pom.xml -------------------------------------------------------------------------------- /deploy-openshift/solutions/expense/post_expense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/solutions/expense/post_expense.sh -------------------------------------------------------------------------------- /deploy-openshift/solutions/expense/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/solutions/expense/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /deploy-openshift/solutions/expense/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-openshift/solutions/expense/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /deploy-review/apps/microservice-session/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-session/.dockerignore -------------------------------------------------------------------------------- /deploy-review/apps/microservice-session/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-session/.gitignore -------------------------------------------------------------------------------- /deploy-review/apps/microservice-session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-session/README.md -------------------------------------------------------------------------------- /deploy-review/apps/microservice-session/kubefiles/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-session/kubefiles/app.yaml -------------------------------------------------------------------------------- /deploy-review/apps/microservice-session/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-session/pom.xml -------------------------------------------------------------------------------- /deploy-review/apps/microservice-session/resources/create-session.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-session/resources/create-session.sh -------------------------------------------------------------------------------- /deploy-review/apps/microservice-session/resources/get-sessions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-session/resources/get-sessions.sh -------------------------------------------------------------------------------- /deploy-review/apps/microservice-session/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-session/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-speaker/.dockerignore -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-speaker/.gitignore -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-speaker/README.md -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-speaker/pom.xml -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/resources/create-speaker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-speaker/resources/create-speaker.sh -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/resources/get-speakers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-speaker/resources/get-speakers.sh -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/apps/microservice-speaker/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/src/test/resources/k8s-sb/testing/database: -------------------------------------------------------------------------------- 1 | testing -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/src/test/resources/k8s-sb/testing/host: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/src/test/resources/k8s-sb/testing/password: -------------------------------------------------------------------------------- 1 | developer -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/src/test/resources/k8s-sb/testing/port: -------------------------------------------------------------------------------- 1 | 5432 -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/src/test/resources/k8s-sb/testing/type: -------------------------------------------------------------------------------- 1 | postgresql -------------------------------------------------------------------------------- /deploy-review/apps/microservice-speaker/src/test/resources/k8s-sb/testing/username: -------------------------------------------------------------------------------- 1 | developer -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-session/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/solutions/microservice-session/.dockerignore -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-session/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/solutions/microservice-session/.gitignore -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/solutions/microservice-session/README.md -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-session/kubefiles/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/solutions/microservice-session/kubefiles/app.yaml -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-session/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/solutions/microservice-session/pom.xml -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-session/resources/get-sessions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/solutions/microservice-session/resources/get-sessions.sh -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/solutions/microservice-speaker/.dockerignore -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/solutions/microservice-speaker/.gitignore -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/solutions/microservice-speaker/README.md -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/solutions/microservice-speaker/pom.xml -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-speaker/resources/get-speakers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-review/solutions/microservice-speaker/resources/get-speakers.sh -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-speaker/src/test/resources/k8s-sb/testing/database: -------------------------------------------------------------------------------- 1 | testing -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-speaker/src/test/resources/k8s-sb/testing/host: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-speaker/src/test/resources/k8s-sb/testing/password: -------------------------------------------------------------------------------- 1 | developer -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-speaker/src/test/resources/k8s-sb/testing/port: -------------------------------------------------------------------------------- 1 | 5432 -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-speaker/src/test/resources/k8s-sb/testing/type: -------------------------------------------------------------------------------- 1 | postgresql -------------------------------------------------------------------------------- /deploy-review/solutions/microservice-speaker/src/test/resources/k8s-sb/testing/username: -------------------------------------------------------------------------------- 1 | developer -------------------------------------------------------------------------------- /deploy-source/apps/expense-client/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-client/.dockerignore -------------------------------------------------------------------------------- /deploy-source/apps/expense-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-client/.gitignore -------------------------------------------------------------------------------- /deploy-source/apps/expense-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-client/README.md -------------------------------------------------------------------------------- /deploy-source/apps/expense-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-client/pom.xml -------------------------------------------------------------------------------- /deploy-source/apps/expense-client/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-client/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /deploy-source/apps/expense-client/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-client/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /deploy-source/apps/expense-client/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-client/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /deploy-source/apps/expense-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-service/.dockerignore -------------------------------------------------------------------------------- /deploy-source/apps/expense-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-service/.gitignore -------------------------------------------------------------------------------- /deploy-source/apps/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-service/README.md -------------------------------------------------------------------------------- /deploy-source/apps/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-service/pom.xml -------------------------------------------------------------------------------- /deploy-source/apps/expense-service/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-service/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /deploy-source/apps/expense-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /deploy-source/apps/expense-service/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/apps/expense-service/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /deploy-source/solutions/expense-client/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/solutions/expense-client/.dockerignore -------------------------------------------------------------------------------- /deploy-source/solutions/expense-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/solutions/expense-client/.gitignore -------------------------------------------------------------------------------- /deploy-source/solutions/expense-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/solutions/expense-client/README.md -------------------------------------------------------------------------------- /deploy-source/solutions/expense-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/solutions/expense-client/pom.xml -------------------------------------------------------------------------------- /deploy-source/solutions/expense-client/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/solutions/expense-client/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /deploy-source/solutions/expense-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/solutions/expense-service/.dockerignore -------------------------------------------------------------------------------- /deploy-source/solutions/expense-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/solutions/expense-service/.gitignore -------------------------------------------------------------------------------- /deploy-source/solutions/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/solutions/expense-service/README.md -------------------------------------------------------------------------------- /deploy-source/solutions/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/solutions/expense-service/pom.xml -------------------------------------------------------------------------------- /deploy-source/solutions/expense-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/deploy-source/solutions/expense-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /develop-config/apps/expense-validator/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-config/apps/expense-validator/.dockerignore -------------------------------------------------------------------------------- /develop-config/apps/expense-validator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-config/apps/expense-validator/.gitignore -------------------------------------------------------------------------------- /develop-config/apps/expense-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-config/apps/expense-validator/README.md -------------------------------------------------------------------------------- /develop-config/apps/expense-validator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-config/apps/expense-validator/pom.xml -------------------------------------------------------------------------------- /develop-config/apps/expense-validator/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-config/apps/expense-validator/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /develop-config/apps/expense-validator/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-config/apps/expense-validator/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /develop-config/apps/expense-validator/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /develop-config/solutions/expense-validator/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-config/solutions/expense-validator/.dockerignore -------------------------------------------------------------------------------- /develop-config/solutions/expense-validator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-config/solutions/expense-validator/.gitignore -------------------------------------------------------------------------------- /develop-config/solutions/expense-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-config/solutions/expense-validator/README.md -------------------------------------------------------------------------------- /develop-config/solutions/expense-validator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-config/solutions/expense-validator/pom.xml -------------------------------------------------------------------------------- /develop-native/apps/expense-function/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-native/apps/expense-function/.dockerignore -------------------------------------------------------------------------------- /develop-native/apps/expense-function/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-native/apps/expense-function/.gitignore -------------------------------------------------------------------------------- /develop-native/apps/expense-function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-native/apps/expense-function/README.md -------------------------------------------------------------------------------- /develop-native/apps/expense-function/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-native/apps/expense-function/pom.xml -------------------------------------------------------------------------------- /develop-native/apps/expense-function/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-native/apps/expense-function/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /develop-native/apps/expense-function/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-native/apps/expense-function/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /develop-native/solutions/expense-function/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-native/solutions/expense-function/.dockerignore -------------------------------------------------------------------------------- /develop-native/solutions/expense-function/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-native/solutions/expense-function/.gitignore -------------------------------------------------------------------------------- /develop-native/solutions/expense-function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-native/solutions/expense-function/README.md -------------------------------------------------------------------------------- /develop-native/solutions/expense-function/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-native/solutions/expense-function/pom.xml -------------------------------------------------------------------------------- /develop-persist/apps/expense-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-persist/apps/expense-service/.dockerignore -------------------------------------------------------------------------------- /develop-persist/apps/expense-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-persist/apps/expense-service/.gitignore -------------------------------------------------------------------------------- /develop-persist/apps/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-persist/apps/expense-service/README.md -------------------------------------------------------------------------------- /develop-persist/apps/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-persist/apps/expense-service/pom.xml -------------------------------------------------------------------------------- /develop-persist/apps/expense-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-persist/apps/expense-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /develop-persist/apps/expense-service/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-persist/apps/expense-service/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /develop-persist/apps/expense-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | quarkus.swagger-ui.always-include=true 2 | 3 | # TODO: Add configuration -------------------------------------------------------------------------------- /develop-persist/apps/expense-service/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-persist/apps/expense-service/src/main/resources/import.sql -------------------------------------------------------------------------------- /develop-persist/solutions/expense-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-persist/solutions/expense-service/.dockerignore -------------------------------------------------------------------------------- /develop-persist/solutions/expense-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-persist/solutions/expense-service/.gitignore -------------------------------------------------------------------------------- /develop-persist/solutions/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-persist/solutions/expense-service/README.md -------------------------------------------------------------------------------- /develop-persist/solutions/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-persist/solutions/expense-service/pom.xml -------------------------------------------------------------------------------- /develop-persist/solutions/expense-service/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-persist/solutions/expense-service/src/main/resources/import.sql -------------------------------------------------------------------------------- /develop-rest/apps/expense-client/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-client/.dockerignore -------------------------------------------------------------------------------- /develop-rest/apps/expense-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-client/.gitignore -------------------------------------------------------------------------------- /develop-rest/apps/expense-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-client/README.md -------------------------------------------------------------------------------- /develop-rest/apps/expense-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-client/pom.xml -------------------------------------------------------------------------------- /develop-rest/apps/expense-client/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-client/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /develop-rest/apps/expense-client/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-client/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /develop-rest/apps/expense-client/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-client/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /develop-rest/apps/expense-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-service/.dockerignore -------------------------------------------------------------------------------- /develop-rest/apps/expense-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-service/.gitignore -------------------------------------------------------------------------------- /develop-rest/apps/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-service/README.md -------------------------------------------------------------------------------- /develop-rest/apps/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-service/pom.xml -------------------------------------------------------------------------------- /develop-rest/apps/expense-service/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-service/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /develop-rest/apps/expense-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /develop-rest/apps/expense-service/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/apps/expense-service/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /develop-rest/solutions/expense-client/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/solutions/expense-client/.dockerignore -------------------------------------------------------------------------------- /develop-rest/solutions/expense-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/solutions/expense-client/.gitignore -------------------------------------------------------------------------------- /develop-rest/solutions/expense-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/solutions/expense-client/README.md -------------------------------------------------------------------------------- /develop-rest/solutions/expense-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/solutions/expense-client/pom.xml -------------------------------------------------------------------------------- /develop-rest/solutions/expense-client/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/solutions/expense-client/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /develop-rest/solutions/expense-client/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/solutions/expense-client/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /develop-rest/solutions/expense-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/solutions/expense-service/.dockerignore -------------------------------------------------------------------------------- /develop-rest/solutions/expense-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/solutions/expense-service/.gitignore -------------------------------------------------------------------------------- /develop-rest/solutions/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/solutions/expense-service/README.md -------------------------------------------------------------------------------- /develop-rest/solutions/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/solutions/expense-service/pom.xml -------------------------------------------------------------------------------- /develop-rest/solutions/expense-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-rest/solutions/expense-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /develop-review/apps/microservice-speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-review/apps/microservice-speaker/.dockerignore -------------------------------------------------------------------------------- /develop-review/apps/microservice-speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-review/apps/microservice-speaker/.gitignore -------------------------------------------------------------------------------- /develop-review/apps/microservice-speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-review/apps/microservice-speaker/README.md -------------------------------------------------------------------------------- /develop-review/apps/microservice-speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-review/apps/microservice-speaker/pom.xml -------------------------------------------------------------------------------- /develop-review/apps/microservice-speaker/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-review/apps/microservice-speaker/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /develop-review/apps/microservice-speaker/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /develop-review/solutions/microservice-speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-review/solutions/microservice-speaker/.dockerignore -------------------------------------------------------------------------------- /develop-review/solutions/microservice-speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-review/solutions/microservice-speaker/.gitignore -------------------------------------------------------------------------------- /develop-review/solutions/microservice-speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-review/solutions/microservice-speaker/README.md -------------------------------------------------------------------------------- /develop-review/solutions/microservice-speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/develop-review/solutions/microservice-speaker/pom.xml -------------------------------------------------------------------------------- /istio-tutorial/customer/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/customer/.dockerignore -------------------------------------------------------------------------------- /istio-tutorial/customer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/customer/pom.xml -------------------------------------------------------------------------------- /istio-tutorial/customer/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/customer/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /istio-tutorial/customer/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/customer/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /istio-tutorial/customer/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/customer/src/main/resources/application.properties -------------------------------------------------------------------------------- /istio-tutorial/parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/parallel.sh -------------------------------------------------------------------------------- /istio-tutorial/preference/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/preference/.dockerignore -------------------------------------------------------------------------------- /istio-tutorial/preference/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/preference/pom.xml -------------------------------------------------------------------------------- /istio-tutorial/preference/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/preference/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /istio-tutorial/preference/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/preference/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /istio-tutorial/preference/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/preference/src/main/resources/application.properties -------------------------------------------------------------------------------- /istio-tutorial/recommendation/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/recommendation/.dockerignore -------------------------------------------------------------------------------- /istio-tutorial/recommendation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/recommendation/pom.xml -------------------------------------------------------------------------------- /istio-tutorial/recommendation/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/recommendation/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /istio-tutorial/recommendation/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/recommendation/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /istio-tutorial/sequential.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/istio-tutorial/sequential.sh -------------------------------------------------------------------------------- /monitor-logging/apps/expenses/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/apps/expenses/.dockerignore -------------------------------------------------------------------------------- /monitor-logging/apps/expenses/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/apps/expenses/.gitignore -------------------------------------------------------------------------------- /monitor-logging/apps/expenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/apps/expenses/README.md -------------------------------------------------------------------------------- /monitor-logging/apps/expenses/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/apps/expenses/pom.xml -------------------------------------------------------------------------------- /monitor-logging/apps/expenses/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/apps/expenses/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /monitor-logging/apps/expenses/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/apps/expenses/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /monitor-logging/apps/expenses/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/apps/expenses/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /monitor-logging/apps/expenses/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitor-logging/solutions/expenses/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/solutions/expenses/.dockerignore -------------------------------------------------------------------------------- /monitor-logging/solutions/expenses/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/solutions/expenses/.gitignore -------------------------------------------------------------------------------- /monitor-logging/solutions/expenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/solutions/expenses/README.md -------------------------------------------------------------------------------- /monitor-logging/solutions/expenses/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/solutions/expenses/pom.xml -------------------------------------------------------------------------------- /monitor-logging/solutions/expenses/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/solutions/expenses/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /monitor-logging/solutions/expenses/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/solutions/expenses/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /monitor-logging/solutions/expenses/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-logging/solutions/expenses/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /monitor-metrics/apps/expense-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-metrics/apps/expense-service/.dockerignore -------------------------------------------------------------------------------- /monitor-metrics/apps/expense-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-metrics/apps/expense-service/.gitignore -------------------------------------------------------------------------------- /monitor-metrics/apps/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-metrics/apps/expense-service/README.md -------------------------------------------------------------------------------- /monitor-metrics/apps/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-metrics/apps/expense-service/pom.xml -------------------------------------------------------------------------------- /monitor-metrics/apps/expense-service/scripts/simulate-traffic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-metrics/apps/expense-service/scripts/simulate-traffic.sh -------------------------------------------------------------------------------- /monitor-metrics/apps/expense-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-metrics/apps/expense-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /monitor-metrics/apps/expense-service/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-metrics/apps/expense-service/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /monitor-metrics/apps/expense-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /monitor-metrics/solutions/expense-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-metrics/solutions/expense-service/.dockerignore -------------------------------------------------------------------------------- /monitor-metrics/solutions/expense-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-metrics/solutions/expense-service/.gitignore -------------------------------------------------------------------------------- /monitor-metrics/solutions/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-metrics/solutions/expense-service/README.md -------------------------------------------------------------------------------- /monitor-metrics/solutions/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-metrics/solutions/expense-service/pom.xml -------------------------------------------------------------------------------- /monitor-metrics/solutions/expense-service/scripts/simulate-traffic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-metrics/solutions/expense-service/scripts/simulate-traffic.sh -------------------------------------------------------------------------------- /monitor-metrics/solutions/expense-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/.gitignore -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/README.md -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/build/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/build/favicon.ico -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/build/index.html -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/build/manifest.json -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/build/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/build/robots.txt -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/db.js -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/package-lock.json -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/package.json -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/public/favicon.ico -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/public/index.html -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/public/manifest.json -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/public/robots.txt -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/serve.py -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/src/App.css -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/src/App.test.tsx -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/src/App.tsx -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/src/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/src/Layout.tsx -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/src/Models/Session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/src/Models/Session.ts -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/src/Models/Speaker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/src/Models/Speaker.ts -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/src/index.css -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/src/index.tsx -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/src/logo.svg -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/src/setupTests.ts -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/dashboard/tsconfig.json -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/sessions/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/sessions/.dockerignore -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/sessions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/sessions/.gitignore -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/sessions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/sessions/README.md -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/sessions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/sessions/pom.xml -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/speakers/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/speakers/.dockerignore -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/speakers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/speakers/.gitignore -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/speakers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/speakers/README.md -------------------------------------------------------------------------------- /monitor-review/apps/quarkus-conference/speakers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/apps/quarkus-conference/speakers/pom.xml -------------------------------------------------------------------------------- /monitor-review/solutions/quarkus-conference/sessions/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/solutions/quarkus-conference/sessions/.dockerignore -------------------------------------------------------------------------------- /monitor-review/solutions/quarkus-conference/sessions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/solutions/quarkus-conference/sessions/.gitignore -------------------------------------------------------------------------------- /monitor-review/solutions/quarkus-conference/sessions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/solutions/quarkus-conference/sessions/README.md -------------------------------------------------------------------------------- /monitor-review/solutions/quarkus-conference/sessions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/solutions/quarkus-conference/sessions/pom.xml -------------------------------------------------------------------------------- /monitor-review/solutions/quarkus-conference/speakers/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/solutions/quarkus-conference/speakers/.dockerignore -------------------------------------------------------------------------------- /monitor-review/solutions/quarkus-conference/speakers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/solutions/quarkus-conference/speakers/.gitignore -------------------------------------------------------------------------------- /monitor-review/solutions/quarkus-conference/speakers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/solutions/quarkus-conference/speakers/README.md -------------------------------------------------------------------------------- /monitor-review/solutions/quarkus-conference/speakers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-review/solutions/quarkus-conference/speakers/pom.xml -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/add-tracing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/apps/quarkus-calculator/add-tracing.sh -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/adder/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/apps/quarkus-calculator/adder/.dockerignore -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/adder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/apps/quarkus-calculator/adder/.gitignore -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/adder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/apps/quarkus-calculator/adder/pom.xml -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/jaeger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/apps/quarkus-calculator/jaeger.sh -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/multiplier/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/apps/quarkus-calculator/multiplier/.dockerignore -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/multiplier/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/apps/quarkus-calculator/multiplier/.gitignore -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/multiplier/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/apps/quarkus-calculator/multiplier/pom.xml -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/solver/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/apps/quarkus-calculator/solver/.dockerignore -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/solver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/apps/quarkus-calculator/solver/.gitignore -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/solver/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/apps/quarkus-calculator/solver/pom.xml -------------------------------------------------------------------------------- /monitor-trace/apps/quarkus-calculator/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/apps/quarkus-calculator/start.sh -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/add-tracing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/solutions/quarkus-calculator/add-tracing.sh -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/adder/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/solutions/quarkus-calculator/adder/.dockerignore -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/adder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/solutions/quarkus-calculator/adder/.gitignore -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/adder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/solutions/quarkus-calculator/adder/pom.xml -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/jaeger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/solutions/quarkus-calculator/jaeger.sh -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/multiplier/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/solutions/quarkus-calculator/multiplier/.dockerignore -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/multiplier/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/solutions/quarkus-calculator/multiplier/.gitignore -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/multiplier/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/solutions/quarkus-calculator/multiplier/pom.xml -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/solver/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/solutions/quarkus-calculator/solver/.dockerignore -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/solver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/solutions/quarkus-calculator/solver/.gitignore -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/solver/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/solutions/quarkus-calculator/solver/pom.xml -------------------------------------------------------------------------------- /monitor-trace/solutions/quarkus-calculator/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/monitor-trace/solutions/quarkus-calculator/start.sh -------------------------------------------------------------------------------- /mvn-offline-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/mvn-offline-mode.sh -------------------------------------------------------------------------------- /quarkus-calculator-monolith/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator-monolith/.dockerignore -------------------------------------------------------------------------------- /quarkus-calculator-monolith/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator-monolith/.gitignore -------------------------------------------------------------------------------- /quarkus-calculator-monolith/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator-monolith/pom.xml -------------------------------------------------------------------------------- /quarkus-calculator-monolith/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator-monolith/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /quarkus-calculator-monolith/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator-monolith/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /quarkus-calculator-monolith/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /quarkus-calculator/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/.project -------------------------------------------------------------------------------- /quarkus-calculator/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /quarkus-calculator/adder/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/adder/.dockerignore -------------------------------------------------------------------------------- /quarkus-calculator/adder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/adder/.gitignore -------------------------------------------------------------------------------- /quarkus-calculator/adder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/adder/pom.xml -------------------------------------------------------------------------------- /quarkus-calculator/adder/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/adder/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /quarkus-calculator/adder/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/adder/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /quarkus-calculator/adder/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/adder/src/main/resources/application.properties -------------------------------------------------------------------------------- /quarkus-calculator/create-projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/create-projects.sh -------------------------------------------------------------------------------- /quarkus-calculator/multiplier/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/multiplier/.dockerignore -------------------------------------------------------------------------------- /quarkus-calculator/multiplier/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/multiplier/.gitignore -------------------------------------------------------------------------------- /quarkus-calculator/multiplier/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/multiplier/pom.xml -------------------------------------------------------------------------------- /quarkus-calculator/multiplier/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/multiplier/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /quarkus-calculator/multiplier/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/multiplier/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /quarkus-calculator/multiplier/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/multiplier/src/main/resources/application.properties -------------------------------------------------------------------------------- /quarkus-calculator/solver/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/solver/.dockerignore -------------------------------------------------------------------------------- /quarkus-calculator/solver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/solver/.gitignore -------------------------------------------------------------------------------- /quarkus-calculator/solver/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/solver/pom.xml -------------------------------------------------------------------------------- /quarkus-calculator/solver/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/solver/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /quarkus-calculator/solver/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/solver/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /quarkus-calculator/solver/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/solver/src/main/resources/application.properties -------------------------------------------------------------------------------- /quarkus-calculator/start-locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-calculator/start-locally.sh -------------------------------------------------------------------------------- /quarkus-conference/microservice-schedule/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-schedule/.dockerignore -------------------------------------------------------------------------------- /quarkus-conference/microservice-schedule/.factorypath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-schedule/.factorypath -------------------------------------------------------------------------------- /quarkus-conference/microservice-schedule/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-schedule/.gitignore -------------------------------------------------------------------------------- /quarkus-conference/microservice-schedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-schedule/README.md -------------------------------------------------------------------------------- /quarkus-conference/microservice-schedule/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-schedule/pom.xml -------------------------------------------------------------------------------- /quarkus-conference/microservice-schedule/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-schedule/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /quarkus-conference/microservice-schedule/src/main/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-schedule/src/main/docker/Makefile -------------------------------------------------------------------------------- /quarkus-conference/microservice-session/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-session/.dockerignore -------------------------------------------------------------------------------- /quarkus-conference/microservice-session/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-session/.gitignore -------------------------------------------------------------------------------- /quarkus-conference/microservice-session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-session/README.md -------------------------------------------------------------------------------- /quarkus-conference/microservice-session/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-session/pom.xml -------------------------------------------------------------------------------- /quarkus-conference/microservice-session/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-session/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /quarkus-conference/microservice-speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-speaker/.dockerignore -------------------------------------------------------------------------------- /quarkus-conference/microservice-speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-speaker/.gitignore -------------------------------------------------------------------------------- /quarkus-conference/microservice-speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-speaker/README.md -------------------------------------------------------------------------------- /quarkus-conference/microservice-speaker/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-speaker/mvnw -------------------------------------------------------------------------------- /quarkus-conference/microservice-speaker/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-speaker/mvnw.cmd -------------------------------------------------------------------------------- /quarkus-conference/microservice-speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-speaker/pom.xml -------------------------------------------------------------------------------- /quarkus-conference/microservice-speaker/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-speaker/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /quarkus-conference/microservice-vote/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-vote/.dockerignore -------------------------------------------------------------------------------- /quarkus-conference/microservice-vote/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-vote/.gitignore -------------------------------------------------------------------------------- /quarkus-conference/microservice-vote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-vote/README.md -------------------------------------------------------------------------------- /quarkus-conference/microservice-vote/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-vote/mvnw.cmd -------------------------------------------------------------------------------- /quarkus-conference/microservice-vote/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-vote/pom.xml -------------------------------------------------------------------------------- /quarkus-conference/microservice-vote/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-vote/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /quarkus-conference/microservice-vote/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/microservice-vote/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /quarkus-conference/parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/parallel.sh -------------------------------------------------------------------------------- /quarkus-conference/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/pom.xml -------------------------------------------------------------------------------- /quarkus-conference/sequential.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/sequential.sh -------------------------------------------------------------------------------- /quarkus-conference/service-toggle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/service-toggle.sh -------------------------------------------------------------------------------- /quarkus-conference/web-app/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/.env -------------------------------------------------------------------------------- /quarkus-conference/web-app/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/.env.production -------------------------------------------------------------------------------- /quarkus-conference/web-app/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/.eslintrc -------------------------------------------------------------------------------- /quarkus-conference/web-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/.gitignore -------------------------------------------------------------------------------- /quarkus-conference/web-app/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 4 3 | } 4 | -------------------------------------------------------------------------------- /quarkus-conference/web-app/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/Jenkinsfile -------------------------------------------------------------------------------- /quarkus-conference/web-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/README.md -------------------------------------------------------------------------------- /quarkus-conference/web-app/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/db.js -------------------------------------------------------------------------------- /quarkus-conference/web-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/package.json -------------------------------------------------------------------------------- /quarkus-conference/web-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/public/favicon.ico -------------------------------------------------------------------------------- /quarkus-conference/web-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/public/index.html -------------------------------------------------------------------------------- /quarkus-conference/web-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/public/logo192.png -------------------------------------------------------------------------------- /quarkus-conference/web-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/public/logo512.png -------------------------------------------------------------------------------- /quarkus-conference/web-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/public/manifest.json -------------------------------------------------------------------------------- /quarkus-conference/web-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/public/robots.txt -------------------------------------------------------------------------------- /quarkus-conference/web-app/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/routes.json -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/App.css -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/App.test.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/App.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Components/ErrorAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Components/ErrorAlert.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Components/LoadingContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Components/LoadingContent.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Components/Navigation.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Components/Navigation.spec.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Components/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Components/Navigation.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Components/ScheduleList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Components/ScheduleList.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Components/SessionList.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Components/SessionList.spec.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Components/SessionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Components/SessionList.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Components/SpeakerList.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Components/SpeakerList.spec.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Components/SpeakerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Components/SpeakerList.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Components/StarRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Components/StarRating.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Components/UserAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Components/UserAlert.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Images/placeholder.png -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Images/training_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Images/training_white.png -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Layout.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Models/Schedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Models/Schedule.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Models/Session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Models/Session.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Models/SessionRating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Models/SessionRating.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Models/Speaker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Models/Speaker.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Pages/ScheduleDetailPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Pages/ScheduleDetailPage.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Pages/SchedulesPage.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Pages/SchedulesPage.spec.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Pages/SchedulesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Pages/SchedulesPage.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Pages/SessionDetailPage.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Pages/SessionDetailPage.spec.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Pages/SessionDetailPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Pages/SessionDetailPage.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Pages/SessionsPage.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Pages/SessionsPage.spec.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Pages/SessionsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Pages/SessionsPage.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Pages/SpeakerDetailPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Pages/SpeakerDetailPage.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Pages/SpeakersDetailPage.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Pages/SpeakersDetailPage.spec.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Pages/SpeakersPage.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Pages/SpeakersPage.spec.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Pages/SpeakersPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Pages/SpeakersPage.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Services/RESTClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Services/RESTClient.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Services/ScheduleService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Services/ScheduleService.spec.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Services/ScheduleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Services/ScheduleService.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Services/SessionService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Services/SessionService.spec.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Services/SessionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Services/SessionService.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Services/SpeakerService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Services/SpeakerService.spec.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Services/SpeakerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Services/SpeakerService.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Services/VoteService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Services/VoteService.spec.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/Services/VoteService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/Services/VoteService.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/index.css -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/index.tsx -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/serviceWorker.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/src/setupTests.ts -------------------------------------------------------------------------------- /quarkus-conference/web-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/tsconfig.json -------------------------------------------------------------------------------- /quarkus-conference/web-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/quarkus-conference/web-app/yarn.lock -------------------------------------------------------------------------------- /reactive-architecture/apps/prices/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/prices/.gitignore -------------------------------------------------------------------------------- /reactive-architecture/apps/prices/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/prices/Containerfile -------------------------------------------------------------------------------- /reactive-architecture/apps/prices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/prices/README.md -------------------------------------------------------------------------------- /reactive-architecture/apps/prices/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/prices/app.py -------------------------------------------------------------------------------- /reactive-architecture/apps/prices/push_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/prices/push_image.sh -------------------------------------------------------------------------------- /reactive-architecture/apps/prices/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/prices/requirements.txt -------------------------------------------------------------------------------- /reactive-architecture/apps/products/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/products/.dockerignore -------------------------------------------------------------------------------- /reactive-architecture/apps/products/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/products/.gitignore -------------------------------------------------------------------------------- /reactive-architecture/apps/products/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/products/README.md -------------------------------------------------------------------------------- /reactive-architecture/apps/products/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/products/benchmark.sh -------------------------------------------------------------------------------- /reactive-architecture/apps/products/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/products/pom.xml -------------------------------------------------------------------------------- /reactive-architecture/apps/products/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/products/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /reactive-architecture/apps/products/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/apps/products/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /reactive-architecture/solutions/products/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/solutions/products/.dockerignore -------------------------------------------------------------------------------- /reactive-architecture/solutions/products/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/solutions/products/.gitignore -------------------------------------------------------------------------------- /reactive-architecture/solutions/products/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/solutions/products/README.md -------------------------------------------------------------------------------- /reactive-architecture/solutions/products/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/solutions/products/benchmark.sh -------------------------------------------------------------------------------- /reactive-architecture/solutions/products/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/solutions/products/pom.xml -------------------------------------------------------------------------------- /reactive-architecture/solutions/products/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-architecture/solutions/products/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /reactive-develop/apps/suggestions/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/apps/suggestions/.dockerignore -------------------------------------------------------------------------------- /reactive-develop/apps/suggestions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/apps/suggestions/.gitignore -------------------------------------------------------------------------------- /reactive-develop/apps/suggestions/.mvn/wrapper/.gitignore: -------------------------------------------------------------------------------- 1 | maven-wrapper.jar 2 | -------------------------------------------------------------------------------- /reactive-develop/apps/suggestions/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/apps/suggestions/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /reactive-develop/apps/suggestions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/apps/suggestions/README.md -------------------------------------------------------------------------------- /reactive-develop/apps/suggestions/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/apps/suggestions/mvnw -------------------------------------------------------------------------------- /reactive-develop/apps/suggestions/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/apps/suggestions/mvnw.cmd -------------------------------------------------------------------------------- /reactive-develop/apps/suggestions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/apps/suggestions/pom.xml -------------------------------------------------------------------------------- /reactive-develop/apps/suggestions/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/apps/suggestions/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /reactive-develop/apps/suggestions/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/apps/suggestions/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /reactive-develop/apps/suggestions/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/apps/suggestions/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /reactive-develop/solutions/suggestions/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/solutions/suggestions/.dockerignore -------------------------------------------------------------------------------- /reactive-develop/solutions/suggestions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/solutions/suggestions/.gitignore -------------------------------------------------------------------------------- /reactive-develop/solutions/suggestions/.mvn/wrapper/.gitignore: -------------------------------------------------------------------------------- 1 | maven-wrapper.jar 2 | -------------------------------------------------------------------------------- /reactive-develop/solutions/suggestions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/solutions/suggestions/README.md -------------------------------------------------------------------------------- /reactive-develop/solutions/suggestions/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/solutions/suggestions/mvnw -------------------------------------------------------------------------------- /reactive-develop/solutions/suggestions/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/solutions/suggestions/mvnw.cmd -------------------------------------------------------------------------------- /reactive-develop/solutions/suggestions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/solutions/suggestions/pom.xml -------------------------------------------------------------------------------- /reactive-develop/solutions/suggestions/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-develop/solutions/suggestions/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /reactive-eda/apps/fraud-detector/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/fraud-detector/.dockerignore -------------------------------------------------------------------------------- /reactive-eda/apps/fraud-detector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/fraud-detector/.gitignore -------------------------------------------------------------------------------- /reactive-eda/apps/fraud-detector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/fraud-detector/README.md -------------------------------------------------------------------------------- /reactive-eda/apps/fraud-detector/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/fraud-detector/pom.xml -------------------------------------------------------------------------------- /reactive-eda/apps/fraud-detector/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/fraud-detector/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /reactive-eda/apps/fraud-detector/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/fraud-detector/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /reactive-eda/apps/fraud-detector/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/fraud-detector/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /reactive-eda/apps/red-hat-bank/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/red-hat-bank/.dockerignore -------------------------------------------------------------------------------- /reactive-eda/apps/red-hat-bank/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/red-hat-bank/.gitignore -------------------------------------------------------------------------------- /reactive-eda/apps/red-hat-bank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/red-hat-bank/README.md -------------------------------------------------------------------------------- /reactive-eda/apps/red-hat-bank/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/red-hat-bank/pom.xml -------------------------------------------------------------------------------- /reactive-eda/apps/red-hat-bank/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/red-hat-bank/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /reactive-eda/apps/red-hat-bank/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/red-hat-bank/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /reactive-eda/apps/red-hat-bank/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/red-hat-bank/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /reactive-eda/apps/red-hat-bank/src/main/docker/Dockerfile.native-micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/apps/red-hat-bank/src/main/docker/Dockerfile.native-micro -------------------------------------------------------------------------------- /reactive-eda/apps/red-hat-bank/src/main/java/com/redhat/training/event/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reactive-eda/apps/red-hat-bank/src/main/java/com/redhat/training/serde/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reactive-eda/solutions/fraud-detector/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/solutions/fraud-detector/.dockerignore -------------------------------------------------------------------------------- /reactive-eda/solutions/fraud-detector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/solutions/fraud-detector/.gitignore -------------------------------------------------------------------------------- /reactive-eda/solutions/fraud-detector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/solutions/fraud-detector/README.md -------------------------------------------------------------------------------- /reactive-eda/solutions/fraud-detector/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/solutions/fraud-detector/pom.xml -------------------------------------------------------------------------------- /reactive-eda/solutions/fraud-detector/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/solutions/fraud-detector/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /reactive-eda/solutions/fraud-detector/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/solutions/fraud-detector/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /reactive-eda/solutions/red-hat-bank/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/solutions/red-hat-bank/.dockerignore -------------------------------------------------------------------------------- /reactive-eda/solutions/red-hat-bank/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/solutions/red-hat-bank/.gitignore -------------------------------------------------------------------------------- /reactive-eda/solutions/red-hat-bank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/solutions/red-hat-bank/README.md -------------------------------------------------------------------------------- /reactive-eda/solutions/red-hat-bank/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/solutions/red-hat-bank/pom.xml -------------------------------------------------------------------------------- /reactive-eda/solutions/red-hat-bank/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/solutions/red-hat-bank/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /reactive-eda/solutions/red-hat-bank/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-eda/solutions/red-hat-bank/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /reactive-review/apps/reactive-speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-review/apps/reactive-speaker/.dockerignore -------------------------------------------------------------------------------- /reactive-review/apps/reactive-speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-review/apps/reactive-speaker/.gitignore -------------------------------------------------------------------------------- /reactive-review/apps/reactive-speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-review/apps/reactive-speaker/README.md -------------------------------------------------------------------------------- /reactive-review/apps/reactive-speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-review/apps/reactive-speaker/pom.xml -------------------------------------------------------------------------------- /reactive-review/apps/reactive-speaker/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-review/apps/reactive-speaker/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /reactive-review/apps/reactive-speaker/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-review/apps/reactive-speaker/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /reactive-review/apps/reactive-speaker/src/main/java/com/redhat/training/serde/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reactive-review/solutions/reactive-speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-review/solutions/reactive-speaker/.dockerignore -------------------------------------------------------------------------------- /reactive-review/solutions/reactive-speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-review/solutions/reactive-speaker/.gitignore -------------------------------------------------------------------------------- /reactive-review/solutions/reactive-speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-review/solutions/reactive-speaker/README.md -------------------------------------------------------------------------------- /reactive-review/solutions/reactive-speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/reactive-review/solutions/reactive-speaker/pom.xml -------------------------------------------------------------------------------- /secure-jwt/apps/expenses/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/apps/expenses/.dockerignore -------------------------------------------------------------------------------- /secure-jwt/apps/expenses/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/apps/expenses/.gitignore -------------------------------------------------------------------------------- /secure-jwt/apps/expenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/apps/expenses/README.md -------------------------------------------------------------------------------- /secure-jwt/apps/expenses/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/apps/expenses/pom.xml -------------------------------------------------------------------------------- /secure-jwt/apps/expenses/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/apps/expenses/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /secure-jwt/apps/expenses/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/apps/expenses/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /secure-jwt/apps/expenses/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/apps/expenses/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /secure-jwt/apps/expenses/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/apps/expenses/src/main/resources/application.properties -------------------------------------------------------------------------------- /secure-jwt/solutions/expenses/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/solutions/expenses/.dockerignore -------------------------------------------------------------------------------- /secure-jwt/solutions/expenses/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/solutions/expenses/.gitignore -------------------------------------------------------------------------------- /secure-jwt/solutions/expenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/solutions/expenses/README.md -------------------------------------------------------------------------------- /secure-jwt/solutions/expenses/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/solutions/expenses/pom.xml -------------------------------------------------------------------------------- /secure-jwt/solutions/expenses/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/solutions/expenses/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /secure-jwt/solutions/expenses/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/solutions/expenses/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /secure-jwt/solutions/expenses/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/solutions/expenses/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /secure-jwt/solutions/expenses/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-jwt/solutions/expenses/src/main/resources/application.properties -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker-dashboard/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker-dashboard/Containerfile -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker-dashboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker-dashboard/LICENSE -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker-dashboard/README.md -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker-dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker-dashboard/package.json -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker-dashboard/src/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker-dashboard/src/app/app.css -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker-dashboard/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker-dashboard/src/favicon.ico -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker-dashboard/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker-dashboard/src/index.html -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker-dashboard/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker-dashboard/src/index.tsx -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker-dashboard/stylePaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker-dashboard/stylePaths.js -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker-dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker-dashboard/tsconfig.json -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker-dashboard/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker-dashboard/webpack.dev.js -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker-dashboard/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker-dashboard/webpack.prod.js -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker/.dockerignore -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker/.gitignore -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker/README.md -------------------------------------------------------------------------------- /secure-review/apps/quarkus-conference/speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/apps/quarkus-conference/speaker/pom.xml -------------------------------------------------------------------------------- /secure-review/solutions/quarkus-conference/speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/solutions/quarkus-conference/speaker/.dockerignore -------------------------------------------------------------------------------- /secure-review/solutions/quarkus-conference/speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/solutions/quarkus-conference/speaker/.gitignore -------------------------------------------------------------------------------- /secure-review/solutions/quarkus-conference/speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/solutions/quarkus-conference/speaker/README.md -------------------------------------------------------------------------------- /secure-review/solutions/quarkus-conference/speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-review/solutions/quarkus-conference/speaker/pom.xml -------------------------------------------------------------------------------- /secure-sso/apps/expense/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/apps/expense/.dockerignore -------------------------------------------------------------------------------- /secure-sso/apps/expense/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/apps/expense/.gitignore -------------------------------------------------------------------------------- /secure-sso/apps/expense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/apps/expense/README.md -------------------------------------------------------------------------------- /secure-sso/apps/expense/get_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/apps/expense/get_token.sh -------------------------------------------------------------------------------- /secure-sso/apps/expense/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/apps/expense/pom.xml -------------------------------------------------------------------------------- /secure-sso/apps/expense/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/apps/expense/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /secure-sso/apps/expense/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/apps/expense/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /secure-sso/apps/expense/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/apps/expense/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /secure-sso/apps/expense/src/main/docker/Dockerfile.native-micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/apps/expense/src/main/docker/Dockerfile.native-micro -------------------------------------------------------------------------------- /secure-sso/apps/expense/src/main/resources/META-INF/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/apps/expense/src/main/resources/META-INF/import.sql -------------------------------------------------------------------------------- /secure-sso/apps/expense/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/apps/expense/src/main/resources/application.properties -------------------------------------------------------------------------------- /secure-sso/solutions/expense/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/solutions/expense/.dockerignore -------------------------------------------------------------------------------- /secure-sso/solutions/expense/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/solutions/expense/.gitignore -------------------------------------------------------------------------------- /secure-sso/solutions/expense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/solutions/expense/README.md -------------------------------------------------------------------------------- /secure-sso/solutions/expense/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/solutions/expense/pom.xml -------------------------------------------------------------------------------- /secure-sso/solutions/expense/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/solutions/expense/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /secure-sso/solutions/expense/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/solutions/expense/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /secure-sso/solutions/expense/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/solutions/expense/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /secure-sso/solutions/expense/src/main/docker/Dockerfile.native-micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/solutions/expense/src/main/docker/Dockerfile.native-micro -------------------------------------------------------------------------------- /secure-sso/solutions/expense/src/main/resources/META-INF/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/solutions/expense/src/main/resources/META-INF/import.sql -------------------------------------------------------------------------------- /secure-sso/solutions/expense/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/secure-sso/solutions/expense/src/main/resources/application.properties -------------------------------------------------------------------------------- /sync-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/sync-images.sh -------------------------------------------------------------------------------- /test-devservices/apps/expense-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/apps/expense-service/.dockerignore -------------------------------------------------------------------------------- /test-devservices/apps/expense-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/apps/expense-service/.gitignore -------------------------------------------------------------------------------- /test-devservices/apps/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/apps/expense-service/README.md -------------------------------------------------------------------------------- /test-devservices/apps/expense-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/apps/expense-service/mvnw -------------------------------------------------------------------------------- /test-devservices/apps/expense-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/apps/expense-service/mvnw.cmd -------------------------------------------------------------------------------- /test-devservices/apps/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/apps/expense-service/pom.xml -------------------------------------------------------------------------------- /test-devservices/apps/expense-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/apps/expense-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /test-devservices/apps/expense-service/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/apps/expense-service/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /test-devservices/apps/expense-service/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/apps/expense-service/src/main/resources/import.sql -------------------------------------------------------------------------------- /test-devservices/solutions/expense-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/solutions/expense-service/.dockerignore -------------------------------------------------------------------------------- /test-devservices/solutions/expense-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/solutions/expense-service/.gitignore -------------------------------------------------------------------------------- /test-devservices/solutions/expense-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/solutions/expense-service/README.md -------------------------------------------------------------------------------- /test-devservices/solutions/expense-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/solutions/expense-service/mvnw -------------------------------------------------------------------------------- /test-devservices/solutions/expense-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/solutions/expense-service/mvnw.cmd -------------------------------------------------------------------------------- /test-devservices/solutions/expense-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-devservices/solutions/expense-service/pom.xml -------------------------------------------------------------------------------- /test-mock/apps/expenses-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-mock/apps/expenses-service/.dockerignore -------------------------------------------------------------------------------- /test-mock/apps/expenses-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-mock/apps/expenses-service/.gitignore -------------------------------------------------------------------------------- /test-mock/apps/expenses-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-mock/apps/expenses-service/README.md -------------------------------------------------------------------------------- /test-mock/apps/expenses-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-mock/apps/expenses-service/pom.xml -------------------------------------------------------------------------------- /test-mock/apps/expenses-service/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-mock/apps/expenses-service/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /test-mock/apps/expenses-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-mock/apps/expenses-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /test-mock/apps/expenses-service/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-mock/apps/expenses-service/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /test-mock/solutions/expenses-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-mock/solutions/expenses-service/.dockerignore -------------------------------------------------------------------------------- /test-mock/solutions/expenses-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-mock/solutions/expenses-service/.gitignore -------------------------------------------------------------------------------- /test-mock/solutions/expenses-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-mock/solutions/expenses-service/README.md -------------------------------------------------------------------------------- /test-mock/solutions/expenses-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-mock/solutions/expenses-service/pom.xml -------------------------------------------------------------------------------- /test-mock/solutions/expenses-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-mock/solutions/expenses-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /test-review/apps/schedule/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/schedule/.dockerignore -------------------------------------------------------------------------------- /test-review/apps/schedule/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/schedule/.gitignore -------------------------------------------------------------------------------- /test-review/apps/schedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/schedule/README.md -------------------------------------------------------------------------------- /test-review/apps/schedule/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/schedule/pom.xml -------------------------------------------------------------------------------- /test-review/apps/schedule/src/main/docker/Dockerfile.derby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/schedule/src/main/docker/Dockerfile.derby -------------------------------------------------------------------------------- /test-review/apps/schedule/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/schedule/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /test-review/apps/schedule/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/schedule/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /test-review/apps/schedule/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/schedule/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /test-review/apps/schedule/src/main/docker/Dockerfile.native-micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/schedule/src/main/docker/Dockerfile.native-micro -------------------------------------------------------------------------------- /test-review/apps/schedule/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/schedule/src/main/resources/application.properties -------------------------------------------------------------------------------- /test-review/apps/schedule/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/schedule/src/main/resources/import.sql -------------------------------------------------------------------------------- /test-review/apps/session/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/session/.dockerignore -------------------------------------------------------------------------------- /test-review/apps/session/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/session/.gitignore -------------------------------------------------------------------------------- /test-review/apps/session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/session/README.md -------------------------------------------------------------------------------- /test-review/apps/session/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/session/pom.xml -------------------------------------------------------------------------------- /test-review/apps/session/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/session/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /test-review/apps/session/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/session/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /test-review/apps/session/src/main/resources/META-INF/import-test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/session/src/main/resources/META-INF/import-test.sql -------------------------------------------------------------------------------- /test-review/apps/session/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/session/src/main/resources/application.properties -------------------------------------------------------------------------------- /test-review/apps/speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/speaker/.dockerignore -------------------------------------------------------------------------------- /test-review/apps/speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/speaker/.gitignore -------------------------------------------------------------------------------- /test-review/apps/speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/speaker/README.md -------------------------------------------------------------------------------- /test-review/apps/speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/speaker/pom.xml -------------------------------------------------------------------------------- /test-review/apps/speaker/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/speaker/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /test-review/apps/speaker/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/speaker/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /test-review/apps/speaker/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/speaker/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /test-review/apps/speaker/src/main/docker/Dockerfile.native-micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/speaker/src/main/docker/Dockerfile.native-micro -------------------------------------------------------------------------------- /test-review/apps/speaker/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-review/apps/speaker/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/apps/speaker/src/main/resources/import.sql -------------------------------------------------------------------------------- /test-review/solutions/schedule/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/schedule/.dockerignore -------------------------------------------------------------------------------- /test-review/solutions/schedule/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/schedule/.gitignore -------------------------------------------------------------------------------- /test-review/solutions/schedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/schedule/README.md -------------------------------------------------------------------------------- /test-review/solutions/schedule/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/schedule/pom.xml -------------------------------------------------------------------------------- /test-review/solutions/schedule/src/main/docker/Dockerfile.derby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/schedule/src/main/docker/Dockerfile.derby -------------------------------------------------------------------------------- /test-review/solutions/schedule/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/schedule/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /test-review/solutions/schedule/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/schedule/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /test-review/solutions/schedule/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/schedule/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /test-review/solutions/schedule/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/schedule/src/main/resources/import.sql -------------------------------------------------------------------------------- /test-review/solutions/session/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/session/.dockerignore -------------------------------------------------------------------------------- /test-review/solutions/session/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/session/.gitignore -------------------------------------------------------------------------------- /test-review/solutions/session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/session/README.md -------------------------------------------------------------------------------- /test-review/solutions/session/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/session/pom.xml -------------------------------------------------------------------------------- /test-review/solutions/session/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/session/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /test-review/solutions/session/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/session/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /test-review/solutions/speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/speaker/.dockerignore -------------------------------------------------------------------------------- /test-review/solutions/speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/speaker/.gitignore -------------------------------------------------------------------------------- /test-review/solutions/speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/speaker/README.md -------------------------------------------------------------------------------- /test-review/solutions/speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/speaker/pom.xml -------------------------------------------------------------------------------- /test-review/solutions/speaker/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/speaker/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /test-review/solutions/speaker/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/speaker/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /test-review/solutions/speaker/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/speaker/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /test-review/solutions/speaker/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-review/solutions/speaker/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-review/solutions/speaker/src/main/resources/import.sql -------------------------------------------------------------------------------- /test-unit/apps/expense-restful-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-unit/apps/expense-restful-service/.dockerignore -------------------------------------------------------------------------------- /test-unit/apps/expense-restful-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-unit/apps/expense-restful-service/.gitignore -------------------------------------------------------------------------------- /test-unit/apps/expense-restful-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-unit/apps/expense-restful-service/README.md -------------------------------------------------------------------------------- /test-unit/apps/expense-restful-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-unit/apps/expense-restful-service/pom.xml -------------------------------------------------------------------------------- /test-unit/solutions/expense-restful-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-unit/solutions/expense-restful-service/.dockerignore -------------------------------------------------------------------------------- /test-unit/solutions/expense-restful-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-unit/solutions/expense-restful-service/.gitignore -------------------------------------------------------------------------------- /test-unit/solutions/expense-restful-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-unit/solutions/expense-restful-service/README.md -------------------------------------------------------------------------------- /test-unit/solutions/expense-restful-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/test-unit/solutions/expense-restful-service/pom.xml -------------------------------------------------------------------------------- /tolerance-health/apps/quarkus-calculator/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-health/apps/quarkus-calculator/.dockerignore -------------------------------------------------------------------------------- /tolerance-health/apps/quarkus-calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-health/apps/quarkus-calculator/.gitignore -------------------------------------------------------------------------------- /tolerance-health/apps/quarkus-calculator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-health/apps/quarkus-calculator/pom.xml -------------------------------------------------------------------------------- /tolerance-health/solutions/quarkus-calculator/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-health/solutions/quarkus-calculator/.dockerignore -------------------------------------------------------------------------------- /tolerance-health/solutions/quarkus-calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-health/solutions/quarkus-calculator/.gitignore -------------------------------------------------------------------------------- /tolerance-health/solutions/quarkus-calculator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-health/solutions/quarkus-calculator/pom.xml -------------------------------------------------------------------------------- /tolerance-policies/apps/monitor/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-policies/apps/monitor/.dockerignore -------------------------------------------------------------------------------- /tolerance-policies/apps/monitor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-policies/apps/monitor/.gitignore -------------------------------------------------------------------------------- /tolerance-policies/apps/monitor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-policies/apps/monitor/pom.xml -------------------------------------------------------------------------------- /tolerance-policies/apps/monitor/predict_many.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-policies/apps/monitor/predict_many.sh -------------------------------------------------------------------------------- /tolerance-policies/apps/monitor/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-policies/apps/monitor/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /tolerance-policies/apps/monitor/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-policies/apps/monitor/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /tolerance-policies/apps/monitor/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tolerance-policies/solutions/monitor/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-policies/solutions/monitor/.dockerignore -------------------------------------------------------------------------------- /tolerance-policies/solutions/monitor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-policies/solutions/monitor/.gitignore -------------------------------------------------------------------------------- /tolerance-policies/solutions/monitor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-policies/solutions/monitor/pom.xml -------------------------------------------------------------------------------- /tolerance-policies/solutions/monitor/predict_many.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-policies/solutions/monitor/predict_many.sh -------------------------------------------------------------------------------- /tolerance-policies/solutions/monitor/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-policies/solutions/monitor/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /tolerance-policies/solutions/monitor/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tolerance-review/apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/pom.xml -------------------------------------------------------------------------------- /tolerance-review/apps/session/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/session/.dockerignore -------------------------------------------------------------------------------- /tolerance-review/apps/session/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/session/.gitignore -------------------------------------------------------------------------------- /tolerance-review/apps/session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/session/README.md -------------------------------------------------------------------------------- /tolerance-review/apps/session/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/session/pom.xml -------------------------------------------------------------------------------- /tolerance-review/apps/session/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/session/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /tolerance-review/apps/session/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/session/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /tolerance-review/apps/speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/speaker/.dockerignore -------------------------------------------------------------------------------- /tolerance-review/apps/speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/speaker/.gitignore -------------------------------------------------------------------------------- /tolerance-review/apps/speaker/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/speaker/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /tolerance-review/apps/speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/speaker/README.md -------------------------------------------------------------------------------- /tolerance-review/apps/speaker/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/speaker/mvnw -------------------------------------------------------------------------------- /tolerance-review/apps/speaker/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/speaker/mvnw.cmd -------------------------------------------------------------------------------- /tolerance-review/apps/speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/speaker/pom.xml -------------------------------------------------------------------------------- /tolerance-review/apps/speaker/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/speaker/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /tolerance-review/apps/speaker/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/speaker/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /tolerance-review/apps/speaker/src/main/resources/META-INF/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/apps/speaker/src/main/resources/META-INF/import.sql -------------------------------------------------------------------------------- /tolerance-review/solutions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/pom.xml -------------------------------------------------------------------------------- /tolerance-review/solutions/session/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/session/.dockerignore -------------------------------------------------------------------------------- /tolerance-review/solutions/session/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/session/.gitignore -------------------------------------------------------------------------------- /tolerance-review/solutions/session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/session/README.md -------------------------------------------------------------------------------- /tolerance-review/solutions/session/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/session/pom.xml -------------------------------------------------------------------------------- /tolerance-review/solutions/session/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/session/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /tolerance-review/solutions/session/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/session/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /tolerance-review/solutions/speaker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/speaker/.dockerignore -------------------------------------------------------------------------------- /tolerance-review/solutions/speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/speaker/.gitignore -------------------------------------------------------------------------------- /tolerance-review/solutions/speaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/speaker/README.md -------------------------------------------------------------------------------- /tolerance-review/solutions/speaker/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/speaker/mvnw -------------------------------------------------------------------------------- /tolerance-review/solutions/speaker/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/speaker/mvnw.cmd -------------------------------------------------------------------------------- /tolerance-review/solutions/speaker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/speaker/pom.xml -------------------------------------------------------------------------------- /tolerance-review/solutions/speaker/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/speaker/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /tolerance-review/solutions/speaker/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/DO378-apps/HEAD/tolerance-review/solutions/speaker/src/main/docker/Dockerfile.native --------------------------------------------------------------------------------