# Creating a Gatsby blog site

September 19, 2020

[![gatsby icon](https://cdn.hashnode.com/res/hashnode/image/upload/v1701451696665/0dd246ca-e755-42a6-8262-5b2214fc88f9.png)](https://bhansa.github.io/blog/static/4a9773549091c227cd2eb82ccd9c5e3a/01e7c/gatsby-icon.png)

Creating a blog site using [Gatsby](https://www.gatsbyjs.com/) is pretty easy and it can be done within few minutes.

Gatsby has given a really [good documentation](https://www.gatsbyjs.com/docs/) which is easy to follow, even if you are a beginner.

This site is creatd using [gatsby blog starter](https://github.com/gatsbyjs/gatsby-starter-blog) template. Below are the steps you should follow to create your site:

*   Install [gatsby cli](https://www.gatsbyjs.com/docs/gatsby-cli/#examples)
*   run `gatsby new your_blog`
*   run `cd your_blog`
*   run `gatsby develop`

That’s it, you have your site ready and once you make any changes you will be able to see it on `localhost:8000`.

* * *
