{"id":30127782,"url":"https://github.com/vbatecan/ai-job-recommender-api-quarkus","last_synced_at":"2025-08-10T17:10:55.024Z","repository":{"id":307652583,"uuid":"1027133523","full_name":"vbatecan/ai-job-recommender-api-quarkus","owner":"vbatecan","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-01T10:46:14.000Z","size":48,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-01T12:53:43.257Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/vbatecan.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}},"created_at":"2025-07-27T11:40:23.000Z","updated_at":"2025-08-01T10:46:18.000Z","dependencies_parsed_at":"2025-08-01T12:53:48.180Z","dependency_job_id":"a845fb08-47c3-41df-b88c-e92d0ad15de3","html_url":"https://github.com/vbatecan/ai-job-recommender-api-quarkus","commit_stats":null,"previous_names":["vbatecan/ai-job-recommender-api-quarkus"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/vbatecan/ai-job-recommender-api-quarkus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vbatecan%2Fai-job-recommender-api-quarkus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vbatecan%2Fai-job-recommender-api-quarkus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vbatecan%2Fai-job-recommender-api-quarkus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vbatecan%2Fai-job-recommender-api-quarkus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vbatecan","download_url":"https://codeload.github.com/vbatecan/ai-job-recommender-api-quarkus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vbatecan%2Fai-job-recommender-api-quarkus/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269756394,"owners_count":24470566,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"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":[],"created_at":"2025-08-10T17:10:51.947Z","updated_at":"2025-08-10T17:10:55.004Z","avatar_url":"https://github.com/vbatecan.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AI Job Recommender\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/ai-job-recommender-1.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 ([guide](https://quarkus.io/guides/rest)): A Jakarta REST implementation utilizing build time processing and\n  Vert.x. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on\n  it.\n- Hibernate ORM ([guide](https://quarkus.io/guides/hibernate-orm)): Define your persistent model with Hibernate ORM and\n  Jakarta Persistence\n- Hibernate Validator ([guide](https://quarkus.io/guides/validation)): Validate object properties (field, getter) and\n  method parameters for your beans (REST, CDI, Jakarta Persistence)\n- SmallRye OpenAPI ([guide](https://quarkus.io/guides/openapi-swaggerui)): Document your REST APIs with OpenAPI - comes\n  with Swagger UI\n- REST Jackson ([guide](https://quarkus.io/guides/rest#json-serialisation)): Jackson serialization support for Quarkus\n  REST. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on it\n- WebSockets ([guide](https://quarkus.io/guides/websockets)): WebSocket communication channel support\n- Hibernate ORM with Panache ([guide](https://quarkus.io/guides/hibernate-orm-panache)): Simplify your persistence code\n  for Hibernate ORM via the active record or the repository pattern\n- Mailer ([guide](https://quarkus.io/guides/mailer)): Send emails\n- SmallRye JWT ([guide](https://quarkus.io/guides/security-jwt)): Secure your applications with JSON Web Token\n- JDBC Driver - MySQL ([guide](https://quarkus.io/guides/datasource)): Connect to the MySQL database via JDBC\n- SmallRye Health ([guide](https://quarkus.io/guides/smallrye-health)): Monitor service health\n- SmallRye JWT Build ([guide](https://quarkus.io/guides/security-jwt-build)): Create JSON Web Token with SmallRye JWT\n  Build API\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvbatecan%2Fai-job-recommender-api-quarkus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvbatecan%2Fai-job-recommender-api-quarkus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvbatecan%2Fai-job-recommender-api-quarkus/lists"}