Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Catcher | 91 | 1 | 1 | 25 days ago | 122 | June 08, 2022 | 22 | apache-2.0 | Python | |
microservices and data pipelines end-to-end test tool | ||||||||||
Cloud Native Labs | 61 | 3 years ago | 7 | Java | ||||||
The Labs for Cloud Native Roadshow on OpenShift https://www.openshift.com/ | ||||||||||
Inventory | 19 | 16 days ago | 5 | April 19, 2021 | 2 | other | Go | |||
Microservice for managing inventory data for IIoT devices within Mender ecosystem. | ||||||||||
User Service | 15 | 10 months ago | 2 | gpl-3.0 | Go | |||||
user service using grpc go and postgresql | ||||||||||
Partialfood Inventory | 10 | 5 years ago | C# | |||||||
Inventory Management server for the Partial Foods sample | ||||||||||
Overdelivery Mgmt | 9 | 5 years ago | mit | Java | ||||||
Ads overdelivery handling via predictive budgeting (PoC, simplified) | ||||||||||
Guide Microprofile Metrics | 8 | 2 months ago | 7 | other | Java | |||||
A guide on how to provide system and application metrics from a microservice with MicroProfile Metrics: https://openliberty.io/guides/microprofile-metrics.html | ||||||||||
Guide Cdi Intro | 7 | 2 months ago | 1 | other | Java | |||||
An introductory guide on how to use Contexts and Dependency Injection to manage and inject dependencies into microservices: https://openliberty.io/guides/cdi-intro.html | ||||||||||
Warehouse | 6 | 3 months ago | 1 | gpl-3.0 | Elixir | |||||
A microservice to encapsulate our inventory management functionality | ||||||||||
Mssc Beer Service | 6 | 3 years ago | 2 | Java | ||||||
MSSC Beer Service |
This project contains prototype modules for making a simple product order management system based on micro-service architecture. It based on Spring framework using Spring Boot, Spring Cloud.
This project is currently available under the MIT License.
You can get the sources:
git clone https://github.com/congcoi123/product-order-services.git
These services based on the Netflix operations support system and services token security.
This service provides configurations for all other services (centralized configuration for all services).
See more: https://cloud.spring.io/spring-cloud-config/multi/multi__spring_cloud_config_server.html
This service is responsible for mapping requests from a client to the desired service endpoint. It based on Hystrix.
See more: http://microservices.io/patterns/apigateway.html
This is service discovery for your microservices, where all client applications can register by themselves and other microservices look up the Eureka Server to get independent microservices to get the job complete. It is also known as Discovery Server and it contains all the information about client microservices running on which IP address and port.
See more: https://cloud.spring.io/spring-cloud-netflix/multi/multi_spring-cloud-eureka-server.html
Eureka service URL: http://localhost:8001/eureka
Authorization Server for all other services which grants tokens for the backend resource services. All other secured services must set jwk uri for endpoint implemented on this service.
Monitoring an application's health and metrics helps us manage it better, notice unoptimized behavior and get closer to its performance. This especially holds true when we're developing a system with many microservices, where monitoring each service can prove to be crucial when it comes to maintaining our system.
This directory contains all bussiness services.
Comming soon !
Add or update information about a store's customers, including their addresses and whether they have an active customer account with the store.
Comming soon !
Comming soon !
Comming soon !
Create and update a store's orders. Each order is a record of a complete purchase that includes details of the customer, their cart, and any transactions.
Comming soon !
Manage a store's products, which are the individual items and services for sale in the store.
Comming soon !
List or update the inventory of a variant's inventory item.Each variant can have one inventory item, and each inventory item can have many locations.Each location can have many inventory items for many variants.
Comming soon !
Comming soon !
Please run services as the following orders:
1) Start the configuration service
2) Start the eureka service
3) Start the api-gateway service
5) Start the monitoring service
6) Start the auth-role service
7) Now you can start other feature services
All configuration files can be found here: congcoi123/product-order-services-configuration
Each service directory contains their own README
file and ENDPOINTS
documentation.
Coming soon !
Happy coding !