From d8b54ff140552e312e9d409f69a7081475af8675 Mon Sep 17 00:00:00 2001 From: Jay Ehsaniara Date: Tue, 13 Jul 2021 09:07:29 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20=F0=9F=8E=A8=20Update=20the=20RE?= =?UTF-8?q?ADME.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scs-101/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) 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; +```