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 -d
cargo run --bin web_api
cargo run --bin statemachine
cargo run --bin emulator