That project shows the example of a simple application written in a microservice architecture principle. Also, the repo contains a respective version of app that written in a monolithic style.
The app represents a list of simple text operations such as make text upper or lower. Each text operation is executed by a separate service. The are 4 services:
- ui-service
- text-revert-service
- text-to_upper-service
- text-to_lower-service
Docker-compose is used to deploy all services.
Do:
docker-compose up
in the simple_microservice_app folder.