tomek199 / RankMe

Application to manage users ranking based on Glicko rating system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RankMe

Application to manage users ranking based on Glicko rating system.

Architecture

System is designed using Command Query Responsibility Segregation (CQRS) and Event Sourcing patterns. Frontend is Single Page Application (SPA) implemented in Angular Framework. Backend application contains multiple microservices that are standard Spring Boot applications.

Backend services might be divided into two types:

Infrastructure services

  • config-service - service that contains and propagate configuration for other services.
  • discovery-service - services registry.
  • gateway-service - service for handling and distributing HTTP traffic.

Functional services

  • api-service - service that contains GraphQL API and orchestrate CQRS commands and queries.
  • command-service - service for handling CQRS commands.
  • query-service - service for handling CQRS queries.
  • subscription-service - service emit CQRS read-model changes events

Diagram

Architecture diagram

Application start

Requirements:

  • Gradle 7
  • Java 11
  • Angular CLI 12
  • Docker, Docker Compose

To start the whole system it needs to run both backend and frontend parts.

Backend

  • Go to project root directory
  • Build application using Gradle gradle clean build
  • Run docker-compose up

Services:


All services might be also run separately without Docker as standard Spring Boot Application. They require running RabbitMQ, MongoDB and PostgreSQL/Event Store instances.

Frontend

  • Go to webapp directory
  • Install NPM dependencies using npm install
  • Run ng serve

Application is available under http://localhost:4200

About

Application to manage users ranking based on Glicko rating system


Languages

Language:Kotlin 79.6%Language:TypeScript 15.6%Language:HTML 2.1%Language:Gherkin 1.7%Language:Shell 0.5%Language:Dockerfile 0.2%Language:JavaScript 0.2%Language:SCSS 0.1%