--- type: docs title: "Quickstart guide template" linkTitle: "Quickstart template" weight: 20 description: Suggested template and guidance for creating a quickstart guide --- ## Contributing a new quickstart guide Dapr quickstart guides consist of quick instructions that walk readers through a prepared quickstart, saved to the [dapr/quickstarts repo](https://github.com/dapr/quickstarts). These quickstarts package an entire feature or building block in one place, making it easy for the reader to experience how it works without compromising their own project. The quickstart instructions should be succinct, direct, and clear. The sole purpose of a quickstart guide is to simply instruct a reader through the prepared quickstart. If you'd like to explain the concepts behind the quickstart, direct the reader to a concept article for more context. {{% alert title="Note" color="primary" %}} This template is only a suggestion. Feel free to change based on your document's purpose. {{% /alert %}} Learn more about [contributing to the Dapr docs]({{< ref contributing-docs.md >}}), like [front-matter]({{< ref "contributing-docs.md#front-matter" >}}) and [shortcodes]({{< ref "contributing-docs.md#shortcodes" >}}). ### Template ```md --- type: #Required; docs title: #Required; "Quickstart: Brief, clear title" linkTitle: #Required; This will display in the docs table of contents weight: #Required; Use the correct weight based on hierarchy description: #Required; One-sentence description of what to expect in the article --- ## Pre-requisites ## Step 1: Set up the environment ## Step 2: ## Tell us what you think! We're continuously working to improve our Quickstart examples and value your feedback. Did you find this quickstart helpful? Do you have suggestions for improvement? Join the discussion in our [discord channel](https://discord.gg/22ZtJrNe). ## Next steps ```