{"id":30860421,"url":"https://github.com/ransuum/file-processing","last_synced_at":"2026-05-08T09:32:47.494Z","repository":{"id":312734279,"uuid":"1048542851","full_name":"ransuum/file-processing","owner":"ransuum","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-01T16:25:55.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-01T18:23:35.552Z","etag":null,"topics":["java","postgresql","quarkus","virtual-threads"],"latest_commit_sha":null,"homepage":"","language":"Java","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/ransuum.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-01T15:56:22.000Z","updated_at":"2025-09-01T16:25:58.000Z","dependencies_parsed_at":"2025-09-01T18:23:52.007Z","dependency_job_id":"b4e7f7d6-b7c7-41a0-bda4-19a6d02f785d","html_url":"https://github.com/ransuum/file-processing","commit_stats":null,"previous_names":["ransuum/file-processing"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ransuum/file-processing","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ransuum%2Ffile-processing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ransuum%2Ffile-processing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ransuum%2Ffile-processing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ransuum%2Ffile-processing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ransuum","download_url":"https://codeload.github.com/ransuum/file-processing/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ransuum%2Ffile-processing/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32774814,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["java","postgresql","quarkus","virtual-threads"],"created_at":"2025-09-07T15:48:04.892Z","updated_at":"2026-05-08T09:32:47.479Z","avatar_url":"https://github.com/ransuum.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# file-processing\n\nThis project uses Quarkus, the Supersonic Subatomic Java Framework.\n\nIf you want to learn more about Quarkus, please visit its website: \u003chttps://quarkus.io/\u003e.\n\n## Running the application in dev mode\n\nYou can run your application in dev mode that enables live coding using:\n\n```shell script\n./mvnw quarkus:dev\n```\n\n\u003e **_NOTE:_**  Quarkus now ships with a Dev UI, which is available in dev mode only at \u003chttp://localhost:8080/q/dev/\u003e.\n\n## Packaging and running the application\n\nThe application can be packaged using:\n\n```shell script\n./mvnw package\n```\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\nThe application is now runnable using `java -jar target/quarkus-app/quarkus-run.jar`.\n\nIf you want to build an _über-jar_, execute the following command:\n\n```shell script\n./mvnw package -Dquarkus.package.jar.type=uber-jar\n```\n\nThe application, packaged as an _über-jar_, is now runnable using `java -jar target/*-runner.jar`.\n\n## Creating a native executable\n\nYou can create a native executable using:\n\n```shell script\n./mvnw package -Dnative\n```\n\nOr, if you don't have GraalVM installed, you can run the native executable build in a container using:\n\n```shell script\n./mvnw package -Dnative -Dquarkus.native.container-build=true\n```\n\nYou can then execute your native executable with: `./target/file-processing-1.0.0-SNAPSHOT-runner`\n\nIf you want to learn more about building native executables, please consult \u003chttps://quarkus.io/guides/maven-tooling\u003e.\n\n## Related Guides\n\n- REST resources for Hibernate ORM with Panache ([guide](https://quarkus.io/guides/rest-data-panache)): Generate Jakarta REST resources for your Hibernate Panache entities and repositories\n- RESTEasy Classic JSON-B ([guide](https://quarkus.io/guides/rest-json)): JSON-B serialization support for RESTEasy Classic\n- JDBC Driver - PostgreSQL ([guide](https://quarkus.io/guides/datasource)): Connect to the PostgreSQL database via JDBC\n\n## Provided Code\n\n### gRPC\n\nCreate your first gRPC service\n\n[Related guide section...](https://quarkus.io/guides/grpc-getting-started)\n\n### REST Data with Panache\n\nGenerating Jakarta REST resources with Panache\n\n[Related guide section...](https://quarkus.io/guides/rest-data-panache)\n\n\n### RESTEasy JAX-RS\n\nEasily start your RESTful Web Services\n\n[Related guide section...](https://quarkus.io/guides/getting-started#the-jax-rs-resources)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fransuum%2Ffile-processing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fransuum%2Ffile-processing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fransuum%2Ffile-processing/lists"}