{"id":15138566,"url":"https://github.com/teedjay/quarkus-reactive-devservices","last_synced_at":"2026-01-29T04:52:38.891Z","repository":{"id":73156909,"uuid":"405142386","full_name":"teedjay/quarkus-reactive-devservices","owner":"teedjay","description":"Reactive Quarkus with Kafka and PostgreSQL","archived":false,"fork":false,"pushed_at":"2021-09-10T16:29:32.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-06T02:15:10.272Z","etag":null,"topics":["java","kafka","postgres","quarkus","reactive","vert-x"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/teedjay.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-09-10T16:19:19.000Z","updated_at":"2021-09-11T19:28:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"8a4306db-9b37-4923-82a8-ac13746eb20c","html_url":"https://github.com/teedjay/quarkus-reactive-devservices","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/teedjay/quarkus-reactive-devservices","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teedjay%2Fquarkus-reactive-devservices","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teedjay%2Fquarkus-reactive-devservices/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teedjay%2Fquarkus-reactive-devservices/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teedjay%2Fquarkus-reactive-devservices/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/teedjay","download_url":"https://codeload.github.com/teedjay/quarkus-reactive-devservices/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teedjay%2Fquarkus-reactive-devservices/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28862905,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T22:56:21.783Z","status":"online","status_checked_at":"2026-01-29T02:00:06.714Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","kafka","postgres","quarkus","reactive","vert-x"],"created_at":"2024-09-26T07:41:32.316Z","updated_at":"2026-01-29T04:52:38.875Z","avatar_url":"https://github.com/teedjay.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# quarkus-reactive-devservices\n\nThis project uses Quarkus and when starting up dev-mode you will have Kafka and PostgreSQL provided\nfor you using Quarkus dev-services.\n\n- https://quarkus.io/guides/kafka-dev-services\n- https://quarkus.io/guides/datasource#dev-services\n\n## Dev Services\n\nQuarkus dev-services uses TestContainers to start Kafka and PostgreSQL \ninstances both for development and testing.\n\nYou can expect the following if you check what's running in Docker in dev-mode :\n\n```shell script\n❯ docker ps\nCONTAINER ID   IMAGE                         \nfcfe29a7c0ab   vectorized/redpanda:v21.5.5   Kafka\n04ac9431e72c   postgres:13.2                 PostgreSQL\n707d6b214905   testcontainers/ryuk:0.3.1     TestContainers WatchDog \n```\n\nIf you enable continuous testing you can expect a separate set of containers\nfor running the actual tests - like this : \n\n```shell script\n❯ docker ps\nCONTAINER ID   IMAGE\n# these are for development (hot-reload)                         \nfcfe29a7c0ab   vectorized/redpanda:v21.5.5   Kafka\n04ac9431e72c   postgres:13.2                 PostgreSQL\n707d6b214905   testcontainers/ryuk:0.3.1     TestContainers WatchDog\n# these are used by tests only\n973a81dd633a   vectorized/redpanda:v21.5.5   Kafka\nf860bc34b461   postgres:13.2                 PostgreSQL\n147ff62772d4   testcontainers/ryuk:0.3.1     TestContainers WatchDog\n```\n\n## Running the application in dev mode\n\nYou can run your application in dev mode that enables live coding using:\n```shell script\n./mvnw compile quarkus:dev\n```\n\n## Using CURL to test application\n\n```shell script\n# push new message to Kafka\ncurl http://localhost:8080/kafka\n\n# messages are processed from the topic avove and the result posted to another Kafka topic\n\n# the result is streamed from final Kafka topic using SSE\ncurl -N http://localhost:8080/sse\n```\n\n\u003e **_NOTE:_**  Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.\n\n## Packaging and running the application\n\nThe application can be packaged using:\n```shell script\n./mvnw package\n```\nIt produces the `quarkus-run.jar` file in the `target/quarkus-app/` directory.\nBe aware that it’s not an _über-jar_ as the dependencies are copied into the `target/quarkus-app/lib/` directory.\n\nIf you want to build an _über-jar_, execute the following command:\n```shell script\n./mvnw package -Dquarkus.package.type=uber-jar\n```\n\nThe application is now runnable using `java -jar target/quarkus-app/quarkus-run.jar`.\n\n## Creating a native executable\n\nYou can create a native executable using: \n```shell script\n./mvnw package -Pnative\n```\n\nOr, if you don't have GraalVM installed, you can run the native executable build in a container using: \n```shell script\n./mvnw package -Pnative -Dquarkus.native.container-build=true\n```\n\nYou can then execute your native executable with: `./target/quarkus-reactive-devservices-1.0.0-SNAPSHOT-runner`\n\nIf you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling.html.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteedjay%2Fquarkus-reactive-devservices","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fteedjay%2Fquarkus-reactive-devservices","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteedjay%2Fquarkus-reactive-devservices/lists"}