Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Latest commit

 

History

History
17 lines (12 loc) · 1.53 KB

README.md

File metadata and controls

17 lines (12 loc) · 1.53 KB

Microservice App - PRFT Devops Training

This is the application you are going to use through the whole traninig. This, hopefully, will teach you the fundamentals you need in a real project. You will find a basic TODO application designed with a microservice architecture. Although is a TODO application, it is interesting because the microservices that compose it are written in different programming language or frameworks (Go, Python, Vue, Java, and NodeJS). With this design you will experiment with multiple build tools and environments.

Components

In each folder you can find a more in-depth explanation of each component:

  1. Users API is a Spring Boot application. Provides user profiles. At the moment, does not provide full CRUD, just getting a single user and all users.
  2. Auth API is a Go application, and provides authorization functionality. Generates JWT tokens to be used with other APIs.
  3. TODOs API is a NodeJS application, provides CRUD functionality over user's TODO records. Also, it logs "create" and "delete" operations to Redis queue.
  4. Log Message Processor is a queue processor written in Python. Its purpose is to read messages from a Redis queue and print them to standard output.
  5. Frontend Vue application, provides UI.

Architecture

Take a look at the components diagram that describes them and their interactions. microservice-app-example