From 6bd2b56636bd37741c2612c1ab45685970f69e71 Mon Sep 17 00:00:00 2001 From: Giselle van Dongen Date: Thu, 12 Sep 2024 08:37:25 +0200 Subject: [PATCH] Fix starting command tour of python --- docs/get_started/tour.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/get_started/tour.mdx b/docs/get_started/tour.mdx index cf578be0..b9c79e01 100644 --- a/docs/get_started/tour.mdx +++ b/docs/get_started/tour.mdx @@ -192,7 +192,7 @@ go run ./app Run the services: ```shell - python3 -m hypercorn -b localhost:9080 tour/app/app:app + python -m hypercorn --config hypercorn-config.toml tour/app/app:app ``` This [GitHub repository](https://github.com/restatedev/examples/tree/main/tutorials/tour-of-restate-python) contains the basic skeleton of the Python services that you develop in this tutorial.