diff --git a/website/partials/getting-started.mdx b/website/partials/getting-started.mdx index f857cf6..7df04a2 100644 --- a/website/partials/getting-started.mdx +++ b/website/partials/getting-started.mdx @@ -2,22 +2,24 @@ The easiest way to start a new project is to use the Gatsby starter. It generates a ready-to-use project with all needed dependencies. +First, [install gatsby-cli](https://www.gatsbyjs.com/docs/tutorial/part-0/). + ### Create your website: ```bash -npx gatsby-cli new website https://github.com/gregberge/smooth-doc-starter +gatsby new website https://github.com/gregberge/smooth-doc ``` ### Change directories into site folder ```bash -cd website +cd website/website ``` ### Start development server ```bash -npm run develop +gatsby develop ``` Gatsby will start a hot-reloading development environment accessible by default at http://localhost:8000.