Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/creek-service/ks-connected-services-demo
Extends the basic-kafka-streams-demo with a second service
https://github.com/creek-service/ks-connected-services-demo
kafka-streams microservice microservice-example microservices microservices-architecture microservices-demo
Last synced: 4 days ago
JSON representation
Extends the basic-kafka-streams-demo with a second service
- Host: GitHub
- URL: https://github.com/creek-service/ks-connected-services-demo
- Owner: creek-service
- License: apache-2.0
- Created: 2023-03-08T11:07:19.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-05T23:22:20.000Z (8 days ago)
- Last Synced: 2024-11-06T00:24:00.607Z (8 days ago)
- Topics: kafka-streams, microservice, microservice-example, microservices, microservices-architecture, microservices-demo
- Language: Java
- Homepage: https://www.creekservice.org/ks-connected-services-demo/
- Size: 2.07 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Coverage Status](https://coveralls.io/repos/github/creek-service/ks-connected-services-demo/badge.svg?branch=main)](https://coveralls.io/github/creek-service/ks-connected-services-demo?branch=main)
[![build](https://github.com/creek-service/ks-connected-services-demo/actions/workflows/build.yml/badge.svg)](https://github.com/creek-service/ks-connected-services-demo/actions/workflows/build.yml)
[![CodeQL](https://github.com/creek-service/ks-connected-services-demo/actions/workflows/codeql.yml/badge.svg)](https://github.com/creek-service/ks-connected-services-demo/actions/workflows/codeql.yml)# Kafka Streams Connected Services Tutorial
Repo containing the completed [Connected Services tutorial](https://www.creekservice.org/ks-connected-services-demo)
and associated [docs](docs/README.md).### Gradle commands
* `./gradlew` should be the go-to local command to run when developing.
It will run `./gradlew format`, `./gradlew static` and `./gradlew check`.
* `./gradlew format` will format the code using [Spotless][spotless].
* `./gradlew static` will run static code analysis, i.e. [Spotbugs][spotbugs] and [Checkstyle][checkstyle].
* `./gradlew check` will run all checks and tests.
* `./gradlew coverage` will generate a cross-module [Jacoco][jacoco] coverage report.[spotless]: https://github.com/diffplug/spotless
[spotbugs]: https://spotbugs.github.io/
[checkstyle]: https://checkstyle.sourceforge.io/
[jacoco]: https://www.jacoco.org/jacoco/trunk/doc/