{"id":24987501,"url":"https://github.com/ivan-montes/solar-fleet","last_synced_at":"2026-04-11T19:06:21.417Z","repository":{"id":217338650,"uuid":"743488415","full_name":"Ivan-Montes/solar-fleet","owner":"Ivan-Montes","description":"An API REST implemented using Quarkus, Maven, Java, and MongoDB, mainly.","archived":false,"fork":false,"pushed_at":"2024-02-18T10:06:10.000Z","size":130,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-04T11:47:41.611Z","etag":null,"topics":["java","maven","mongodb","openapi","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/Ivan-Montes.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}},"created_at":"2024-01-15T10:49:14.000Z","updated_at":"2024-04-28T08:21:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"c848a8b5-3d3a-49e1-9e97-92737d0d1bd2","html_url":"https://github.com/Ivan-Montes/solar-fleet","commit_stats":null,"previous_names":["ivan-montes/solar-fleet"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ivan-Montes%2Fsolar-fleet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ivan-Montes%2Fsolar-fleet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ivan-Montes%2Fsolar-fleet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ivan-Montes%2Fsolar-fleet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ivan-Montes","download_url":"https://codeload.github.com/Ivan-Montes/solar-fleet/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246174608,"owners_count":20735417,"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":["java","maven","mongodb","openapi","quarkus"],"created_at":"2025-02-04T11:47:54.161Z","updated_at":"2025-10-14T20:34:54.738Z","avatar_url":"https://github.com/Ivan-Montes.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# :sunny::rocket: solar-fleet :sunny::rocket:\n\nAn API implemented using Quarkus, Maven, Java, and MongoDB, mainly. You could list spaceships, classes, positions and the crew in charge in an amazing empty DB.....yeah, it's empty :sweat: Think of it as just an opportunity :relaxed:\n\n\n## Table of contents\n\n- [Installation](#installation)\n- [Usage](#usage)\n- [It's not a bug, it's a feature](#features)\n- [Maintainers](#maintainers)\n- [Contributing](#contributing)\n- [License](#license)\n\n\n## Installation\n\n### Creating a database\n\nTo create a empty local NOSQL database, I used MongoDb. The default name is \"solarfleetdb\" for production, \"solarfleetdbdev\" for developing and \"solarfleetdbtest\" for testing. You can find all of this in application.properties\n\n### Running the application in dev mode\n\nYou can run your application in dev mode that enables live coding using:\n```shell script\n./mvnw compile quarkus:dev\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```shell script\n./mvnw package\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```shell script\n./mvnw package -Dquarkus.package.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```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```shell script\n./mvnw package -Dnative -Dquarkus.native.container-build=true\n```\n\nYou can then execute your native executable with: `./target/solar-fleet-1.0.0-runner`\n\nIf you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling.\n\n\n## Usage\n\nThe best way is to consult SwaggerUI by browsing to `http://localhost:8080/q/swagger-ui/`\n\n\n### Related Guides\n\n- MongoDB with Panache ([guide](https://quarkus.io/guides/mongodb-panache)): Simplify your persistence code for MongoDB via the active record or the repository pattern\n- SmallRye OpenAPI ([guide](https://quarkus.io/guides/openapi-swaggerui)): Document your REST APIs with OpenAPI - comes with Swagger UI\n\n\n## Features\n\n#### :sun_with_face: Unitary Testing with JUnit 5 and Mockito \n\n#### :sun_with_face: Dependency injection and Clean Code respected\n\n#### :sun_with_face: Used Sonarqube community for checking the project\n\n#### :sun_with_face: Hibernate validator included\n\n#### :sun_with_face: Integrity check in MongoDB before any CRUD operation\n\n#### :sun_with_face: OpenAPI Documentation with SwaggerUI\n\n\n## Maintainers\n\nJust me, [Iván](https://github.com/Ivan-Montes) :sweat_smile:\n\n\n## Contributing\n\nContributions are always welcome! \n\n\n## License\n\n[![Java](https://badgen.net/static/JavaSE/17/orange)](https://www.java.com/es/)\n[![Maven](https://badgen.net/badge/icon/maven?icon=maven\u0026label\u0026color=red)](https://https://maven.apache.org/)\n[![Quarkus](https://badgen.net/static/Quarkus/3.6/black)](https://code.quarkus.io/)\n[![GitHub](https://badgen.net/badge/icon/github?icon=github\u0026label)](https://github.com)\n[![Eclipse](https://badgen.net/badge/icon/eclipse?icon=eclipse\u0026label)](https://https://eclipse.org/)\n[![MongoDB](https://badgen.net/static/MongoDB/Community/green)](https://www.mongodb.com)\n[![SonarQube](https://badgen.net/badge/icon/sonarqube?icon=sonarqube\u0026label\u0026color=purple)](https://www.sonarsource.com/products/sonarqube/downloads/)\n[![GPLv3 license](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://choosealicense.com/licenses/gpl-3.0/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fivan-montes%2Fsolar-fleet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fivan-montes%2Fsolar-fleet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fivan-montes%2Fsolar-fleet/lists"}