Microservices are a software architectural style that structures an application as a collection of loosely coupled services. Each service runs a specific task and communicates with other services through well-defined APIs.
Our application makes use of the following microservices:
Each of these services communicates with the other services through APIs, ensuring that they can work together to provide a seamless user experience.
Microservices are typically deployed independently, with each service being responsible for its own deployment. This allows for more flexibility in the development process and enables faster release cycles.
In our application, we use a mono-repo to manage the codebase. This allows us to make changes to multiple services at once, and deploy them together. We use TurboRepo to build and deploy the services.