centralisation des configurations des services utilitaires et des microservices avec spring cloud config server
placidenduwayo 1e5ceef81a new changes hace 1 año
README.md new changes hace 1 año
application.yml new changes hace 1 año
backend-frontend-gateway-service.yml first commit hace 1 año
clean-archi-business-service-address.yml new changes commit hace 1 año
clean-archi-business-service-company.yml new changes commit hace 1 año
clean-archi-business-service-employee.yml new changes commit hace 1 año
clean-archi-business-service-project.yml new changes commit hace 1 año
microservices-registration-service.yml first commit hace 1 año
spring-security-user-auth-service.yml new changes commit hace 1 año

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 the latter picks up the configuration of this 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
          default-label: master

Powered by TurnKey Linux.