📝 🎨 Update the README.md

This commit is contained in:
Jay Ehsaniara
2021-07-13 09:07:29 -07:00
parent 2fc0c384f4
commit d8b54ff140

View File

@@ -21,5 +21,14 @@ lib project for core projects
## 4- scs-101-shipped ## 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 ## 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;
```