Forrest logo
back to the gatsby tool

gatsby:tldr:76381

gatsby: Create a new site.
$ gatsby new ${site_name}
try on your machine

The command "gatsby new" is a command used in Gatsby, a popular framework used to build fast and flexible websites and applications. This command is used to create a new Gatsby site by initializing a new project.

The "${site_name}" is a placeholder or variable that denotes the desired name of the project or site. You need to replace "${site_name}" with the actual name you want for your site. For example, if you want to name your site "my-gatsby-site", you would replace "${site_name}" with "my-gatsby-site" in the command.

So, the overall command "gatsby new ${site_name}" is used to create a new Gatsby site with the specified name, and it initializes the necessary files and dependencies to start building your site.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the gatsby tool