From aa93d97f004d817ab8bb3fc46130d65d22b09876 Mon Sep 17 00:00:00 2001 From: FanouZeng-TT <18280587072@163.com> Date: Sat, 15 Aug 2026 04:35:15 +0800 Subject: [PATCH] docs(rest/python): fix merchant server quick start --- rest/python/client/flower_shop/README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/rest/python/client/flower_shop/README.md b/rest/python/client/flower_shop/README.md index b339d422..25e060cb 100644 --- a/rest/python/client/flower_shop/README.md +++ b/rest/python/client/flower_shop/README.md @@ -41,10 +41,14 @@ checkout by processing a payment. execute this client against. Follow the instructions in the [Server README](../../server/README.md) to start the server on port 8182. - _Quick start (from `../../server/`):_ `bash uv run server.py + _Quick start (from `../../server/`):_ - --products_db_path=/tmp/ucp_test/products.db - --transactions_db_path=/tmp/ucp_test/transactions.db --port=8182` + ```shell + uv run server.py \ + --products_db_path=/tmp/ucp_test/products.db \ + --transactions_db_path=/tmp/ucp_test/transactions.db \ + --port=8182 + ``` ## Running the Client