Skip to content

Documentação dos Microserviços

Equipe de desenvolvedores

  • João Pedro Queiroz Viana

Estrutura atual dos microserviços

flowchart LR
    subgraph api [Subnet API]
        direction TB
        gateway --> account
        gateway --> auth:::red
        gateway --> product
        gateway --> order
        gateway --> exchange
        auth --> account
        order --> product
        account --> db@{ shape: cyl, label: "Database" }
        product --> db
        order --> db
    end
    exchange e3@==> 3partyapi:::green@{label: "3rd-party API"}
    internet e2@==> |request| gateway:::orange
    e2@{ animate: true }
    e3@{ animate: true }
    classDef green fill:#cfc
    classDef orange fill:#FCBE3E

Repositórios

Principal: https://github.com/Joao-Pedro-Queiroz/pma.25.2

Microservice Interface Implementation
Account account account-service
Auth auth auth-service
Gateway gateway-service
Product product product-service
Order order order-service
Exchange exchange-service