diff --git a/scs-101/README.md b/scs-101/README.md index 506641c..ed96167 100644 --- a/scs-101/README.md +++ b/scs-101/README.md @@ -21,5 +21,14 @@ lib project for core projects ## 4- scs-101-shipped +[![scs-101 shipped ci](https://github.com/ehsaniara/scs-kafka-intro/actions/workflows/scs101shipped.yml/badge.svg?branch=main)](https://github.com/ehsaniara/scs-kafka-intro/actions/workflows/scs101shipped.yml) ## 5- scs-101-shipping + +[![scs-101 shipping ci](https://github.com/ehsaniara/scs-kafka-intro/actions/workflows/scs101shipping.yml/badge.svg?branch=main)](https://github.com/ehsaniara/scs-kafka-intro/actions/workflows/scs101shipping.yml) + +# Quick Start + +```shell +ORDER_UUID=$(curl --silent -H 'Content-Type: application/json' -d "{\"itemName\":\"book\"}" http://localhost:8080/order | jq -r '.orderUuid') && for i in `seq 1 15`; do sleep 1; echo $(curl --silent "http://localhost:8080/order/status/"$ORDER_UUID); done; +```