{"id":15103241,"url":"https://github.com/coder-shankar/room-rover","last_synced_at":"2026-01-19T03:33:37.546Z","repository":{"id":235485392,"uuid":"790789178","full_name":"coder-shankar/room-rover","owner":"coder-shankar","description":"Quarkus APP to provide API for room renting service","archived":false,"fork":false,"pushed_at":"2024-06-09T10:10:51.000Z","size":84,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-02-10T22:49:57.564Z","etag":null,"topics":["java17","quarkus"],"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/coder-shankar.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":"2024-04-23T14:30:16.000Z","updated_at":"2024-06-09T10:10:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"73360490-c27c-4f05-8178-c2e69d88c136","html_url":"https://github.com/coder-shankar/room-rover","commit_stats":null,"previous_names":["coder-shankar/room-rover"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder-shankar%2Froom-rover","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder-shankar%2Froom-rover/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder-shankar%2Froom-rover/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coder-shankar%2Froom-rover/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coder-shankar","download_url":"https://codeload.github.com/coder-shankar/room-rover/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247332546,"owners_count":20921853,"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","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":["java17","quarkus"],"created_at":"2024-09-25T19:22:38.329Z","updated_at":"2026-01-19T03:33:37.539Z","avatar_url":"https://github.com/coder-shankar.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# room-booking-portal\n\nThis project uses Quarkus, the Supersonic Subatomic Java Framework.\n\nIf you want to learn more about Quarkus, please visit its website: https://quarkus.io/ .\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./gradlew quarkusDev\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\n```shell script\n./gradlew build\n```\n\nIt produces the `quarkus-run.jar` file in the `build/quarkus-app/` directory.\nBe aware that it’s not an _über-jar_ as the dependencies are copied into the `build/quarkus-app/lib/` directory.\n\nThe application is now runnable using `java -jar build/quarkus-app/quarkus-run.jar`.\n\nIf you want to build an _über-jar_, execute the following command:\n\n```shell script\n./gradlew build -Dquarkus.package.type=uber-jar\n```\n\nThe application, packaged as an _über-jar_, is now runnable using `java -jar build/*-runner.jar`.\n\n## Creating a native executable\n\nYou can create a native executable using:\n\n```shell script\n./gradlew build -Dquarkus.package.type=native\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./gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true\n```\n\nYou can then execute your native executable with: `./build/room-booking-portal-1.0-SNAPSHOT-runner`\n\nIf you want to learn more about building native executables, please consult https://quarkus.io/guides/gradle-tooling.\n\n## Related Guides\n\n- JSON-B ([guide](https://quarkus.io/guides/rest-json)): JSON Binding support\n- RESTEasy Classic JSON-B ([guide](https://quarkus.io/guides/rest-json)): JSON-B serialization support for RESTEasy\n  Classic\n- SmallRye Fault Tolerance ([guide](https://quarkus.io/guides/smallrye-fault-tolerance)): Build fault-tolerant network\n  services\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- SmallRye JWT ([guide](https://quarkus.io/guides/security-jwt)): Secure your applications with JSON Web Token\n- SmallRye Health ([guide](https://quarkus.io/guides/smallrye-health)): Monitor service health\n- Kubernetes ([guide](https://quarkus.io/guides/kubernetes)): Generate Kubernetes resources from annotations\n- JDBC Driver - PostgreSQL ([guide](https://quarkus.io/guides/datasource)): Connect to the PostgreSQL database via JDBC\n\n## Provided Code\n\n### Hibernate ORM\n\nCreate your first JPA entity\n\n[Related guide section...](https://quarkus.io/guides/hibernate-orm)\n\n[Related Hibernate with Panache section...](https://quarkus.io/guides/hibernate-orm-panache)\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\n### SmallRye Health\n\nMonitor your application's health using SmallRye Health\n\n[Related guide section...](https://quarkus.io/guides/smallrye-health)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoder-shankar%2Froom-rover","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoder-shankar%2Froom-rover","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoder-shankar%2Froom-rover/lists"}