Introduction

A straightforward (micro) service orchestrator

Semaphore is a tool to orchestrate your micro-service architecture. Requests could be manipulated passed branched to different services to be returned as a single output.

You could define request flows on top of your currently existing schema definitions.

Please check out the examples directory for more examples.

endpoint "GetUser" "http" {
    endpoint = "/user/:id"
    method = "GET"
}

flow "GetUser" {
    input "proto.Query" {}
    
    resource "user" {
        request "proto.Users" "Get" {
            id = "{{ input:id }}"
        }
    }
    
    output "proto.User" {
        name = "{{ user:name }}"
    }
}

Maestro is an open-source product developed with ❤️ by Jexia Jexia is a developer platform that provides services to help you build web and mobile applications in a fast and simple way.

Last updated