https://github.com/martinsmessias/microservices_python_grpc
Project to study microservices and gRPC with Python
https://github.com/martinsmessias/microservices_python_grpc
grpc microservices python python3
Last synced: 9 months ago
JSON representation
Project to study microservices and gRPC with Python
- Host: GitHub
- URL: https://github.com/martinsmessias/microservices_python_grpc
- Owner: MartinsMessias
- Created: 2022-07-17T00:21:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-20T19:49:03.000Z (about 3 years ago)
- Last Synced: 2025-01-09T06:33:17.713Z (about 1 year ago)
- Topics: grpc, microservices, python, python3
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Project to study microservices and gRPC
[](https://sonarcloud.io/summary/new_code?id=MartinsMessias_microservices_python_grpc)
[](https://sonarcloud.io/summary/new_code?id=MartinsMessias_microservices_python_grpc)
[](https://sonarcloud.io/summary/new_code?id=MartinsMessias_microservices_python_grpc)
[](https://sonarcloud.io/summary/new_code?id=MartinsMessias_microservices_python_grpc)
## Getting started
Microservices are a way to organize complex software systems. Instead of putting all your code into one app, you break your app into microservices that are deployed independently and communicate with each other.
- Catalog will be a very minimal web app that displays a list of movies to the user.
- Recommendations will be a microservice that provides a list of movies in which the user may be interested.

Start the services in the background:
docker-compose up -d
Open Homepage at .
To stop the services in the background:
docker-compose down
#