This repo mirrors the on‑stage flow for From Zero to Event‑Driven with Dapr & Azure Service Bus.
docker compose build
docker compose up -d redis inventory-api billing-api shipping-api order-apiNow order-api is at http://localhost:5000.
curl -X POST http://localhost:5000/orders \
-H "Content-Type: application/json" \
-d '{ "orderId": 1, "amount": 99.0 }'dapr run --components-path ./components \
--app-id order-processor --app-port 6000 \
-- dotnet order-processor/order-processor.dllbombardier -c 50 -n 1000 \
-m POST \
-b '{\"orderId\":42,\"amount\":99.0}' \
http://localhost:5000/ordersInstall on macOS:
brew install bombardierSet SERVICEBUS_CONNECTION_STRING, then:
kubectl apply -f components/orders-pubsub-servicebus.yamlDone!