flowchart TD;
web[Web Client] -- GET / --> static[Static Site]
web -- POST /api/query --> api[REST Frontend]
api -- grpc --> query[Query grpc]
query -- grpc --> statemachine
Docker compose spins up the static site in nginx as well as jaeger for tracing.
docker compose up --build -dcargo run --bin web_apicargo run --bin statemachinecargo run --bin emulator