{"id":31999585,"url":"https://github.com/fanyicharllson/microservices-initial","last_synced_at":"2026-04-08T16:32:22.823Z","repository":{"id":314817185,"uuid":"1056873810","full_name":"fanyicharllson/microservices-initial","owner":"fanyicharllson","description":"Microservices for an online shop using spring boot ","archived":false,"fork":false,"pushed_at":"2025-09-16T23:19:15.000Z","size":35,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-16T06:05:32.517Z","etag":null,"topics":["java","kafka","microservices","mongodb","mysql","spring","spring-boot"],"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/fanyicharllson.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-09-15T00:55:09.000Z","updated_at":"2025-09-17T12:46:05.000Z","dependencies_parsed_at":"2025-09-15T01:20:15.766Z","dependency_job_id":"efa00738-c780-413d-a8e3-adf874038c3b","html_url":"https://github.com/fanyicharllson/microservices-initial","commit_stats":null,"previous_names":["fanyicharllson/microservices-online-shop","fanyicharllson/microservices-initial"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/fanyicharllson/microservices-initial","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fanyicharllson%2Fmicroservices-initial","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fanyicharllson%2Fmicroservices-initial/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fanyicharllson%2Fmicroservices-initial/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fanyicharllson%2Fmicroservices-initial/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fanyicharllson","download_url":"https://codeload.github.com/fanyicharllson/microservices-initial/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fanyicharllson%2Fmicroservices-initial/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31564899,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["java","kafka","microservices","mongodb","mysql","spring","spring-boot"],"created_at":"2025-10-15T14:32:37.256Z","updated_at":"2026-04-08T16:32:22.797Z","avatar_url":"https://github.com/fanyicharllson.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Microservices Online Shop\n\nWelcome to the **Microservices Online Shop** project!  \nThis repository contains a modular and scalable online shop backend built with **Spring Boot** using the microservices architecture pattern.\n\n## Overview\n\nThis project demonstrates how to build an e-commerce backend using multiple independently deployable microservices. Each service is responsible for specific business capabilities and communicates with others using REST APIs (and optionally messaging for advanced scenarios).\n\n**Key Microservices (Typical Examples):**\n- **User Service**: Handles registration, authentication, profile management.\n- **Product Service**: Manages product catalog, details, inventory.\n- **Order Service**: Processes customer orders, maintains order history.\n- **Payment Service**: Integrates payment gateways, manages transactions.\n- **Cart Service**: Handles shopping cart operations.\n- **Notification Service**: Sends emails, SMS, or push notifications.\n\n\n\n## Features\n\n- Modular microservices for common online shop features\n- RESTful APIs built with Spring Boot\n- Centralized configuration and discovery (Spring Cloud support)\n- Secure authentication and authorization (JWT, OAuth, etc.)\n- Database integration (JPA/Hibernate)\n- Container-ready (Docker support)\n- Easy local development\n\n## Architecture\n\n![Microservices Architecture Diagram](https://raw.githubusercontent.com/fanyicharllson/microservices-online-shop/main/docs/architecture-diagram.png)\n*Update diagram if available, or remove line if not present.*\n\nEach service runs independently and communicates over HTTP (or messaging). Common patterns like API Gateway, service discovery, centralized logging, and monitoring can be implemented for production deployments.\n\n## Getting Started\n\n### Prerequisites\n\n- Java 17+\n- Maven or Gradle\n- Docker (optional, for containerized deployment)\n- Git\n\n### Clone the Repository\n\n```bash\ngit clone https://github.com/fanyicharllson/microservices-online-shop.git\ncd microservices-online-shop\n```\n\n### Build and Run\n\nEach microservice is located in its own directory (e.g., `/user-service`, `/product-service`, etc.).\n\nTo build and run a service:\n```bash\ncd user-service\n./mvnw spring-boot:run\n```\nRepeat for other services as needed.\n\n#### Docker Compose (optional)\n\nIf you have a `docker-compose.yml` file, run all services together:\n```bash\ndocker-compose up --build\n```\n\n## API Documentation\n\nEach service exposes endpoints via REST.  \nUse tools like [Swagger/OpenAPI](https://swagger.io/) for auto-generated documentation.  \nCheck `/swagger-ui.html` on each service (if enabled).\n\n## Contributing\n\nContributions are welcome!  \nPlease open issues and pull requests as needed.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Author\n\n**Fanyicharllson**\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffanyicharllson%2Fmicroservices-initial","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffanyicharllson%2Fmicroservices-initial","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffanyicharllson%2Fmicroservices-initial/lists"}