# How To [Build/Create/Do Something] in Ignite CLI ### Introduction and purpose Introductory paragraph about the topic that explains what this topic is about and why the user should care; what problem does the tutorial solve? In this guide, you will [accomplish/build/] [some important thing]... When you're finished, you'll be able to... **Note:** The code in this tutorial is written specifically for this learning experience and is intended only for educational purposes. This tutorial code is not intended to be used in production. ## Prerequisites To complete this tutorial, you will need: * A local development environment for [your chain] * Familiarity with the Cosmos ecosystem and [your chain]. See [cosmos.network](EIP-1559 for $ATOM) to learn more. * (Optional) If software such as Git, Go, Docker, or other tooling needs to be installed, link to the proper article describing how to install it. * (Optional) List any other accounts needed. ## Step 1 — Doing something Introduction to the step. What are you going to do and why are you doing it? First.... Next... Finally... To verify the version of Ignite CLI that is installed, run the following command: ```bash ignite --version ``` You'll see release details like the following output: ``` Ignite version: v0.19.6 Ignite CLI build date: 2021-12-18T05:56:36Z Ignite CLI source hash: - Your OS: darwin Your arch: amd64 Your go version: go version go1.16.4 darwin/amd64 ``` Modify the title by changing the contents of the `` tag: ```protobuf // ... message Post { string creator = 1; string id = 2; string title = 3; string body = 4; } message MsgCreatePost { string creator = 1; string title = 2; string body = 3; } // ... ``` Now transition to the next step by telling the user what's next. ## Step 2 — Sentence case heading Another introduction Your content that guides the user to accomplish a specific step Transition to the next step. ## Step 3 — Sentence case Another introduction Your content Transition to the next step. ## Conclusion In this article you [accomplished or built] [some important thing]. Now you can.... <!-- Speak to the benefits of this technique or procedure and optionally provide places for further exploration. --> <!------------ Formatting -------------------------> <!-- Some examples of how to mark up various things This is _italics_ and this is **bold**. Use italics and bold for specific things. This is `inline code`. Use single tick marks for filenames and commands. Here's a command you can type on a command line: ```bash which go ``` Here's output from a command: ``` /usr/local/go/bin/go ``` Write key presses in ALLCAPS. Use a plus symbol (+) if keys need to be pressed simultaneously: `CTRL+C`. **Note:** This is a note. **Tip:** This is a tip. Add diagrams and screenshots in PNG format with a self-describing filename. Embed them in the article using the following format: ![Alt text for screen readers](/path/to/img.png) -->