{"id":19656445,"url":"https://github.com/daggerok/quarkus-reactive-pg","last_synced_at":"2026-04-28T00:33:32.031Z","repository":{"id":43855244,"uuid":"194010740","full_name":"daggerok/quarkus-reactive-pg","owner":"daggerok","description":"Quarkus MicroProfile reactive postgres data access and REST API","archived":false,"fork":false,"pushed_at":"2022-09-08T01:01:09.000Z","size":70,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-09T21:03:12.001Z","etag":null,"topics":["micro-profile","microprof","microprofile","microprofile-config","microprofile-demo","microprofile-example","microprofile-examples","microprofile-health","mp","quarkus"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/daggerok.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-06-27T02:44:03.000Z","updated_at":"2019-06-27T05:44:07.000Z","dependencies_parsed_at":"2023-01-17T23:30:32.843Z","dependency_job_id":null,"html_url":"https://github.com/daggerok/quarkus-reactive-pg","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/daggerok/quarkus-reactive-pg","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fquarkus-reactive-pg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fquarkus-reactive-pg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fquarkus-reactive-pg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fquarkus-reactive-pg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daggerok","download_url":"https://codeload.github.com/daggerok/quarkus-reactive-pg/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fquarkus-reactive-pg/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32361477,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["micro-profile","microprof","microprofile","microprofile-config","microprofile-demo","microprofile-example","microprofile-examples","microprofile-health","mp","quarkus"],"created_at":"2024-11-11T15:27:48.487Z","updated_at":"2026-04-28T00:33:32.012Z","avatar_url":"https://github.com/daggerok.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# quarkus-reactive-pg [![Build Status](https://travis-ci.org/daggerok/quarkus-reactive-pg.svg?branch=master)](https://travis-ci.org/daggerok/quarkus-reactive-pg)\nQuarkus micro-profile starter using Gradle / Maven build tools.\n\n_getting started_\n\n```bash\n./mvnw -Pdocker docker:start\n\n#./mvnw process-resources flyway:migrate\n./mvnw compile quarkus:dev\n\n./mvnw -Pdocker docker:stop\n```\n\n\u003c!--\n\n_maven dev mode_\n\n```bash\n./mvnw compile quarkus:dev\nhttp :8080/api/v1/hello\n```\n\n_maven build_\n\n```bash\n./mvnw compile jar:jar quarkus:build\njava -cp target/lib -jar target/*-runner.jar\nhttp :8080/api/v1/hello/max\n```\n\n_fat jar_\n\n```bash\n./mvnw package -PuberJar\njava -jar target/*-runner.jar\nhttp :8080/api/v1/hello/max\n```\n\n_maven docker-compose plugin_\n\n```bash\n./mvnw -P docker-compose compile jar:jar quarkus:build docker-compose:up\n#\n./mvnw -P docker-compose docker-compose:down\n```\n\n_docker-compose_\n\n```bash\n./mvnw\ndocker-compose -f ./src/main/docker/docker-compose-maven.yaml up\n# ...\ndocker-compose -f ./src/main/docker/docker-compose-maven.yaml down\n```\n\n_docker jvm_\n\n```bash\n./mvnw clean compile jar:jar quarkus:build\ndocker build -f src/main/docker/Dockerfile.jvm -t quarkus/quarkus-example-jvm .\ndocker run -i --rm --name app -p 8080:8080 quarkus/quarkus-example-jvm \u0026\n#...\ndocker rm -f -v app\n```\n\n_docker native_\n\n```bash\n./mvnw package -Pnative -Dnative-image.docker-build=true\ndocker build -f src/main/docker/Dockerfile.native -t quarkus/quarkus-example-native .\ndocker run -i --rm --name app -p 8080:8080 quarkus/quarkus-example-native\n# ...\ndocker rm -f -v app\n```\n\n_project sources archive_\n\n```bash\n./mvnw assemble:single\n```\n\nfind archive with all project sources in target folder too: \n\n```bash\n./mvnw assembly:single -Dassembly.ignoreMissingDescriptor\nunzip -d target/sources target/*-sources.zip\nunzip -d target/default target/*-src.zip\n```\n\n_maven archetype generator_\n\n```bash\nmvn io.quarkus:quarkus-maven-plugin:0.17.0:create \\\n  -DprojectGroupId=com.github.daggerok \\\n  -DprojectArtifactId=rest-api \\\n  -DprojectVersion=1.0-SNAPSHOT \\\n  -DclassName=\"com.github.daggerok.hello.RestResourcesource\" \\\n  -Dpath=\"/\"\n```\n\n--\u003e\n\n## MicroProfile static typed RestClient\n\n_add rest-client extension_\n\n```bash\n ./mvnw quarkus:add-extensions -Dextensions=\"quarkus-smallrye-rest-client\"\n```\n\n_or directly in pom.xml_\n\n```xml\n\u003cdependencies\u003e\n  \u003cdependency\u003e\n    \u003cgroupId\u003eio.quarkus\u003c/groupId\u003e\n    \u003cartifactId\u003equarkus-smallrye-rest-client\u003c/artifactId\u003e\n  \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\n_declare proxy interface: HelloRestClient.java_\n\n```java\nimport org.eclipse.microprofile.rest.client.inject.RegisterRestClient;\n\n@Path(\"/\")\n@RegisterRestClient\npublic interface HelloRestClient {\n\n  @GET\n  @Produces(APPLICATION_JSON)\n  String getHello();\n}\n```\n\n_usage_\n\n```java\n@Inject\n@RestClient\nHelloRestClient restClient;\n// ...\nvar greeting = restClient.getHello();\n```\n\n## resources\n\n* [YouTube: Build Eclipse MicroProfile apps quickly with Quarkus | Jakarta TechTalks](https://www.youtube.com/watch?v=hReKM6rmcho)\n\n_NOTE: This project has been based on [GitHub: daggerok/main-starter](https://github.com/daggerok/main-starter)_\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaggerok%2Fquarkus-reactive-pg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaggerok%2Fquarkus-reactive-pg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaggerok%2Fquarkus-reactive-pg/lists"}