centralisation des configurations des services utilitaires et des microservices avec spring cloud config server
placidenduwayo 52476b43da new changes 1 年之前
README.md new changes 1 年之前
application.yml new changes 1 年之前
backend-frontend-gateway-service.yml first commit 1 年之前
clean-archi-business-service-address.yml new changes commit 1 年之前
clean-archi-business-service-company.yml new changes commit 1 年之前
clean-archi-business-service-employee.yml new changes commit 1 年之前
clean-archi-business-service-project.yml new changes commit 1 年之前
microservices-registration-service.yml first commit 1 年之前
spring-security-user-auth-service.yml new changes commit 1 年之前

README.md

microservices configurations centralization

This git is gathering all configuration files of utility and business microservices:

  • utility microservices files:

    • microservices-registration-service.yml
    • backend-frontend-gateway-service.yml
  • business microservices files:

    • clean-archi-business-service-address.yml
    • clean-archi-business-service-employee.yml
    • clean-archi-business-service-project.yml
    • clean-archi-business-service-company.yml
  • common configirations to all utility and business microservices

    • application.yml

The configurations inside each file are made for docker images related

At startup, each service contacts the configuration server and this one picks up the configuration of the service in this git. The configuration server is as follow:

server:
  port: 8280
spring:
  cloud:
    config:
      server:
        git:
          uri: https://gitea.natan.fr/placidenduwayo/fullstack-application-springboot-angular-config-service.git # a git repo for all services config files
          default-label: master

Powered by TurnKey Linux.