From a16aff92a6c38db39ffb465cc987a736fec3fd75 Mon Sep 17 00:00:00 2001 From: Jake Levirne <51732+jakelevirne@users.noreply.github.com> Date: Thu, 2 Mar 2023 10:51:50 -0500 Subject: [PATCH] Update initial usage example (#16824) * Update initial usage example After running the initial usage example, it wasn't clear how to know whether the command ran successfully. This adds an instruction to view the output of the running Wasm module. * Update desktop/wasm/index.md --------- Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> --- desktop/wasm/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/desktop/wasm/index.md b/desktop/wasm/index.md index 68dd78a6b2..504c5dc2b9 100644 --- a/desktop/wasm/index.md +++ b/desktop/wasm/index.md @@ -47,6 +47,8 @@ $ docker run -dp 8080:8080 \ michaelirwin244/wasm-example ``` +After running this command, you can visit [http://localhost:8080/](http://localhost:8080/) to see the "Hello world" output from this example module. + > Got an error message? Head to the [troubleshooting section](#troubleshooting) > for help.