├── .gitignore ├── LICENSE ├── README.md ├── book-service ├── .gitignore ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── thomasvitale │ │ │ └── bookservice │ │ │ ├── BookServiceApplication.java │ │ │ ├── config │ │ │ └── SecurityConfig.java │ │ │ ├── demo │ │ │ └── TestDataLoader.java │ │ │ ├── domain │ │ │ ├── Book.java │ │ │ ├── BookNotFoundException.java │ │ │ └── BookRepository.java │ │ │ └── web │ │ │ ├── BookController.java │ │ │ └── BookControllerAdvice.java │ └── resources │ │ ├── application.yml │ │ └── db │ │ └── migration │ │ └── V1__Initial_schema.sql │ └── test │ └── java │ └── com │ └── thomasvitale │ └── bookservice │ └── BookServiceApplicationTests.java ├── config-server ├── .gitignore ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── thomasvitale │ │ │ └── configserver │ │ │ └── ConfigServerApplication.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── thomasvitale │ └── configserver │ └── ConfigServerApplicationTests.java ├── docker-compose.yml ├── edge-service ├── .gitignore ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── thomasvitale │ │ │ └── edgeservice │ │ │ ├── EdgeServiceApplication.java │ │ │ └── SecurityConfig.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── thomasvitale │ └── edgeservice │ └── EdgeServiceApplicationTests.java ├── eureka-server ├── .gitignore ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── thomasvitale │ │ │ └── eurekaserver │ │ │ └── EurekaServerApplication.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── thomasvitale │ └── eurekaserver │ └── EurekaServerApplicationTests.java ├── order-service ├── .gitignore ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── thomasvitale │ │ │ └── orderservice │ │ │ ├── OrderServiceApplication.java │ │ │ ├── config │ │ │ ├── SecurityConfig.java │ │ │ └── WebConfig.java │ │ │ ├── domain │ │ │ ├── Order.java │ │ │ ├── OrderRepository.java │ │ │ └── OrderStatus.java │ │ │ └── web │ │ │ ├── Book.java │ │ │ ├── OrderController.java │ │ │ └── OrderRequest.java │ └── resources │ │ ├── application.yml │ │ └── schema.sql │ └── test │ └── java │ └── com │ └── thomasvitale │ └── orderservice │ └── OrderServiceApplicationTests.java └── platform-config ├── fluent-bit └── fluent-bit.conf ├── grafana └── datasource.yml ├── keycloak └── realm-export.json ├── prometheus └── prometheus.yml └── tempo └── tempo.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/README.md -------------------------------------------------------------------------------- /book-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/.gitignore -------------------------------------------------------------------------------- /book-service/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/build.gradle -------------------------------------------------------------------------------- /book-service/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /book-service/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /book-service/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/gradlew -------------------------------------------------------------------------------- /book-service/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/gradlew.bat -------------------------------------------------------------------------------- /book-service/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/settings.gradle -------------------------------------------------------------------------------- /book-service/src/main/java/com/thomasvitale/bookservice/BookServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/src/main/java/com/thomasvitale/bookservice/BookServiceApplication.java -------------------------------------------------------------------------------- /book-service/src/main/java/com/thomasvitale/bookservice/config/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/src/main/java/com/thomasvitale/bookservice/config/SecurityConfig.java -------------------------------------------------------------------------------- /book-service/src/main/java/com/thomasvitale/bookservice/demo/TestDataLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/src/main/java/com/thomasvitale/bookservice/demo/TestDataLoader.java -------------------------------------------------------------------------------- /book-service/src/main/java/com/thomasvitale/bookservice/domain/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/src/main/java/com/thomasvitale/bookservice/domain/Book.java -------------------------------------------------------------------------------- /book-service/src/main/java/com/thomasvitale/bookservice/domain/BookNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/src/main/java/com/thomasvitale/bookservice/domain/BookNotFoundException.java -------------------------------------------------------------------------------- /book-service/src/main/java/com/thomasvitale/bookservice/domain/BookRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/src/main/java/com/thomasvitale/bookservice/domain/BookRepository.java -------------------------------------------------------------------------------- /book-service/src/main/java/com/thomasvitale/bookservice/web/BookController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/src/main/java/com/thomasvitale/bookservice/web/BookController.java -------------------------------------------------------------------------------- /book-service/src/main/java/com/thomasvitale/bookservice/web/BookControllerAdvice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/src/main/java/com/thomasvitale/bookservice/web/BookControllerAdvice.java -------------------------------------------------------------------------------- /book-service/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/src/main/resources/application.yml -------------------------------------------------------------------------------- /book-service/src/main/resources/db/migration/V1__Initial_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/src/main/resources/db/migration/V1__Initial_schema.sql -------------------------------------------------------------------------------- /book-service/src/test/java/com/thomasvitale/bookservice/BookServiceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/book-service/src/test/java/com/thomasvitale/bookservice/BookServiceApplicationTests.java -------------------------------------------------------------------------------- /config-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/config-server/.gitignore -------------------------------------------------------------------------------- /config-server/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/config-server/build.gradle -------------------------------------------------------------------------------- /config-server/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/config-server/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /config-server/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/config-server/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /config-server/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/config-server/gradlew -------------------------------------------------------------------------------- /config-server/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/config-server/gradlew.bat -------------------------------------------------------------------------------- /config-server/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/config-server/settings.gradle -------------------------------------------------------------------------------- /config-server/src/main/java/com/thomasvitale/configserver/ConfigServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/config-server/src/main/java/com/thomasvitale/configserver/ConfigServerApplication.java -------------------------------------------------------------------------------- /config-server/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/config-server/src/main/resources/application.yml -------------------------------------------------------------------------------- /config-server/src/test/java/com/thomasvitale/configserver/ConfigServerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/config-server/src/test/java/com/thomasvitale/configserver/ConfigServerApplicationTests.java -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /edge-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/edge-service/.gitignore -------------------------------------------------------------------------------- /edge-service/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/edge-service/build.gradle -------------------------------------------------------------------------------- /edge-service/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/edge-service/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /edge-service/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/edge-service/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /edge-service/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/edge-service/gradlew -------------------------------------------------------------------------------- /edge-service/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/edge-service/gradlew.bat -------------------------------------------------------------------------------- /edge-service/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/edge-service/settings.gradle -------------------------------------------------------------------------------- /edge-service/src/main/java/com/thomasvitale/edgeservice/EdgeServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/edge-service/src/main/java/com/thomasvitale/edgeservice/EdgeServiceApplication.java -------------------------------------------------------------------------------- /edge-service/src/main/java/com/thomasvitale/edgeservice/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/edge-service/src/main/java/com/thomasvitale/edgeservice/SecurityConfig.java -------------------------------------------------------------------------------- /edge-service/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/edge-service/src/main/resources/application.yml -------------------------------------------------------------------------------- /edge-service/src/test/java/com/thomasvitale/edgeservice/EdgeServiceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/edge-service/src/test/java/com/thomasvitale/edgeservice/EdgeServiceApplicationTests.java -------------------------------------------------------------------------------- /eureka-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/eureka-server/.gitignore -------------------------------------------------------------------------------- /eureka-server/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/eureka-server/build.gradle -------------------------------------------------------------------------------- /eureka-server/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/eureka-server/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /eureka-server/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/eureka-server/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /eureka-server/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/eureka-server/gradlew -------------------------------------------------------------------------------- /eureka-server/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/eureka-server/gradlew.bat -------------------------------------------------------------------------------- /eureka-server/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/eureka-server/settings.gradle -------------------------------------------------------------------------------- /eureka-server/src/main/java/com/thomasvitale/eurekaserver/EurekaServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/eureka-server/src/main/java/com/thomasvitale/eurekaserver/EurekaServerApplication.java -------------------------------------------------------------------------------- /eureka-server/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/eureka-server/src/main/resources/application.yml -------------------------------------------------------------------------------- /eureka-server/src/test/java/com/thomasvitale/eurekaserver/EurekaServerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/eureka-server/src/test/java/com/thomasvitale/eurekaserver/EurekaServerApplicationTests.java -------------------------------------------------------------------------------- /order-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/.gitignore -------------------------------------------------------------------------------- /order-service/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/build.gradle -------------------------------------------------------------------------------- /order-service/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /order-service/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /order-service/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/gradlew -------------------------------------------------------------------------------- /order-service/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/gradlew.bat -------------------------------------------------------------------------------- /order-service/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/settings.gradle -------------------------------------------------------------------------------- /order-service/src/main/java/com/thomasvitale/orderservice/OrderServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/src/main/java/com/thomasvitale/orderservice/OrderServiceApplication.java -------------------------------------------------------------------------------- /order-service/src/main/java/com/thomasvitale/orderservice/config/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/src/main/java/com/thomasvitale/orderservice/config/SecurityConfig.java -------------------------------------------------------------------------------- /order-service/src/main/java/com/thomasvitale/orderservice/config/WebConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/src/main/java/com/thomasvitale/orderservice/config/WebConfig.java -------------------------------------------------------------------------------- /order-service/src/main/java/com/thomasvitale/orderservice/domain/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/src/main/java/com/thomasvitale/orderservice/domain/Order.java -------------------------------------------------------------------------------- /order-service/src/main/java/com/thomasvitale/orderservice/domain/OrderRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/src/main/java/com/thomasvitale/orderservice/domain/OrderRepository.java -------------------------------------------------------------------------------- /order-service/src/main/java/com/thomasvitale/orderservice/domain/OrderStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/src/main/java/com/thomasvitale/orderservice/domain/OrderStatus.java -------------------------------------------------------------------------------- /order-service/src/main/java/com/thomasvitale/orderservice/web/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/src/main/java/com/thomasvitale/orderservice/web/Book.java -------------------------------------------------------------------------------- /order-service/src/main/java/com/thomasvitale/orderservice/web/OrderController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/src/main/java/com/thomasvitale/orderservice/web/OrderController.java -------------------------------------------------------------------------------- /order-service/src/main/java/com/thomasvitale/orderservice/web/OrderRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/src/main/java/com/thomasvitale/orderservice/web/OrderRequest.java -------------------------------------------------------------------------------- /order-service/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/src/main/resources/application.yml -------------------------------------------------------------------------------- /order-service/src/main/resources/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/src/main/resources/schema.sql -------------------------------------------------------------------------------- /order-service/src/test/java/com/thomasvitale/orderservice/OrderServiceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/order-service/src/test/java/com/thomasvitale/orderservice/OrderServiceApplicationTests.java -------------------------------------------------------------------------------- /platform-config/fluent-bit/fluent-bit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/platform-config/fluent-bit/fluent-bit.conf -------------------------------------------------------------------------------- /platform-config/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/platform-config/grafana/datasource.yml -------------------------------------------------------------------------------- /platform-config/keycloak/realm-export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/platform-config/keycloak/realm-export.json -------------------------------------------------------------------------------- /platform-config/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/platform-config/prometheus/prometheus.yml -------------------------------------------------------------------------------- /platform-config/tempo/tempo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasVitale/microservices-with-spring-masterclass/HEAD/platform-config/tempo/tempo.yml --------------------------------------------------------------------------------