diff --git a/website/versioned_docs/version-0.20/getting-started/build-a-sample-app.mdx b/website/versioned_docs/version-0.20/getting-started/build-a-sample-app.mdx index 996bd3f4a..b2ff96337 100644 --- a/website/versioned_docs/version-0.20/getting-started/build-a-sample-app.mdx +++ b/website/versioned_docs/version-0.20/getting-started/build-a-sample-app.mdx @@ -8,12 +8,18 @@ the boilerplate needed for a basic Yew app or manually set up a small project. ## Using a starter template Install [`cargo-generate`](https://github.com/cargo-generate/cargo-generate) by following their installation instructions -then run the following command: +then run the following commands: ```shell cargo generate --git https://github.com/yewstack/yew-trunk-minimal-template ``` +Change directory into your newly created project, then: + +``` +trunk serve +``` + ## Setting up the application manually ### Create Project