{"id":21998810,"url":"https://github.com/mtpontes/task-organizer-api","last_synced_at":"2026-04-20T09:02:16.085Z","repository":{"id":221158718,"uuid":"753406713","full_name":"mtpontes/task-organizer-api","owner":"mtpontes","description":"Clean Architecture demonstrate a complete application with SpringBoot and MongoDB","archived":false,"fork":false,"pushed_at":"2025-01-02T02:26:32.000Z","size":165,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-28T11:48:11.172Z","etag":null,"topics":["clean-architecture","integration-tests","mongodb","spring-boot","spring-data-mongodb","springdoc-openapi","testcontainers"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mtpontes.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-02-06T03:49:27.000Z","updated_at":"2025-01-02T02:26:35.000Z","dependencies_parsed_at":"2024-06-28T20:48:04.661Z","dependency_job_id":"f6a4505f-79f9-4073-a7a3-51dcc55fb5fd","html_url":"https://github.com/mtpontes/task-organizer-api","commit_stats":null,"previous_names":["mateuspontess/task-organizer","mateuspontess/task-organizer-api","mtpontes/task-organizer-api"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtpontes%2Ftask-organizer-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtpontes%2Ftask-organizer-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtpontes%2Ftask-organizer-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtpontes%2Ftask-organizer-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mtpontes","download_url":"https://codeload.github.com/mtpontes/task-organizer-api/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245056907,"owners_count":20553856,"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":["clean-architecture","integration-tests","mongodb","spring-boot","spring-data-mongodb","springdoc-openapi","testcontainers"],"created_at":"2024-11-29T22:26:36.828Z","updated_at":"2026-04-20T09:02:11.052Z","avatar_url":"https://github.com/mtpontes.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Organizer API\r\n\r\nThis is a complete example of Clean Architecture implemented with Java, SpringBoot and MongoDB, in a simple CRUD application, with high coverage of unit and integration tests, using Junit 5 and TestContainers.\r\n\r\n## 🛠️ Tecnologies \r\n- [Spring Boot](https://spring.io/projects/spring-boot)\r\n- [MongoDB](https://www.mongodb.com/)\r\n- [Docker](https://www.docker.com/)\r\n- [TestContainers](https://testcontainers.com/)\r\n- [Java JWT (Auth0)](https://github.com/auth0/java-jwt)\r\n- [Lombok](https://projectlombok.org/)\r\n- [Springdoc OpenAPI](https://springdoc.org/)\r\n\r\n## 📖 Documentation\r\n\r\nThe documentation can be accessed after deploying the application via the URL http://localhost:8080/swagger-ui/index.html#/ .\r\n\r\nYou can also import my set of requests into Postman. There you have all the endpoints with all the necessary URL parameters and body details to interact with the API.\r\n\r\n[\u003cimg src=\"https://run.pstmn.io/button.svg\" alt=\"Run In Postman\" style=\"width: 128px; height: 32px;\"\u003e](https://app.getpostman.com/run-collection/31232249-ca8cfa3f-f3e7-4ab3-a595-dd7faca07dbe?action=collection%2Ffork\u0026source=rip_markdown\u0026collection-url=entityId%3D31232249-ca8cfa3f-f3e7-4ab3-a595-dd7faca07dbe%26entityType%3Dcollection%26workspaceId%3Daae15406-ac2a-4087-8c9e-47072e8aa119)\r\n\r\n\r\n\u003cdetails\u003e\r\n  \u003csummary\u003e\u003ch2\u003e🚀 How to Run\u003c/h2\u003e\u003c/summary\u003e\r\n\r\n### 📋 Prerequisites\r\n\r\n- Docker\r\n- Docker Compose\r\n\r\n### 🔎 Details\r\n\r\nThe application is configured to connect to MongoDB via port 27017.\r\n\r\n### 🌍 Environment variables:\r\n\r\ndocker-compose.yml is configured to use default values.\r\n\r\n#### Database\r\n`DB_USERNAME`: Default value **root**\r\n\r\n`DB_PASSWORD`: Default value **root**\r\n\r\n#### Security\r\n`JWT_SECRET`: secret used to generate a JWT token. Default value **secret**\r\n\r\n##### These settings can also be changed in `application.properties`.\r\n\r\n### 📦 Installing\r\n\r\nClone the project with the command (or download the zip from Github):\r\n\r\n      git clone https://github.com/mtpontes/task-organizer-api.git\r\n\r\n### 🌐 Deploy\r\n\r\nRaise the containers:\r\n\r\n      docker-compose up --build\r\n\r\n\u003c/details\u003e\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmtpontes%2Ftask-organizer-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmtpontes%2Ftask-organizer-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmtpontes%2Ftask-organizer-api/lists"}