{"id":32662119,"url":"https://github.com/lab-sementes/lab-sementes-api","last_synced_at":"2026-04-15T23:32:24.764Z","repository":{"id":320437188,"uuid":"1073241916","full_name":"lab-sementes/lab-sementes-api","owner":"lab-sementes","description":"💬 API Rest Java para lidar com dados de sensores IOT.","archived":false,"fork":false,"pushed_at":"2025-12-05T23:44:58.000Z","size":85,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-09T13:38:02.009Z","etag":null,"topics":["api","idea","iot","java","quarkus","timescaledb"],"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/lab-sementes.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-10-09T20:21:01.000Z","updated_at":"2025-12-05T23:45:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"2a4d6b14-ddb6-46a7-8c1d-f2a899766bfd","html_url":"https://github.com/lab-sementes/lab-sementes-api","commit_stats":null,"previous_names":["lab-sementes/lab-sementes-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lab-sementes/lab-sementes-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lab-sementes%2Flab-sementes-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lab-sementes%2Flab-sementes-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lab-sementes%2Flab-sementes-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lab-sementes%2Flab-sementes-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lab-sementes","download_url":"https://codeload.github.com/lab-sementes/lab-sementes-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lab-sementes%2Flab-sementes-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31865046,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"last_error":"SSL_read: 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":["api","idea","iot","java","quarkus","timescaledb"],"created_at":"2025-10-31T19:00:38.973Z","updated_at":"2026-04-15T23:32:24.759Z","avatar_url":"https://github.com/lab-sementes.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lab-sementes\n\nEsse projeto usa Quarkus para rodar a API de uma dashboard para monitoramento de sensores termo-higrômetros.\n\n## Lidando com sensores sem um timeout padrão\n\n```sql\nUPDATE sensor SET intervalo_minutos_alerta = 60 WHERE intervalo_minutos_alerta IS NULL;\n```\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/lab-sementes-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 ([guide](https://quarkus.io/guides/rest)): A Jakarta REST implementation utilizing build time processing and Vert.x. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on it.\n- Flyway ([guide](https://quarkus.io/guides/flyway)): Handle your database schema migrations\n- REST Jackson ([guide](https://quarkus.io/guides/rest#json-serialisation)): Jackson serialization support for Quarkus REST. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on it\n- Hibernate ORM with Panache ([guide](https://quarkus.io/guides/hibernate-orm-panache)): Simplify your persistence code for Hibernate ORM via the active record or the repository pattern\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\n### REST\n\nEasily start your REST Web Services\n\n[Related guide section...](https://quarkus.io/guides/getting-started-reactive#reactive-jax-rs-resources)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flab-sementes%2Flab-sementes-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flab-sementes%2Flab-sementes-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flab-sementes%2Flab-sementes-api/lists"}