Create Gatsby apps in an interactive CLI experience that does the plumbing for you.
npm install create-gatsbyCreate Gatsby apps in an interactive CLI experience that does the plumbing for you.
Create a new Gatsby app by running the following command:
``shell`
npm init gatsby
or
`shell`
yarn create gatsby
It will ask you questions about what you're building, and set up a Gatsby project for you.
_Note: This package is different from gatsby-cli, it is intended solely to create new sites._
If you'd like to set up a minimal site without answering any prompts you can run the following command, including your chosen site directory.
``
npm init gatsby -y
If you're making changes to the create-gatsby package, you can follow the steps below to test out your changes locally:
`shMove into the monorepo
cd
Note that if you use the
bootstrap script, you'll have to rebuild after each change. Alternatively, you can use the watch script to automatically rebuild after local changes:`sh
Move into the monorepo
cd Install dependencies and build the package
yarn bootstrapWatch changes
yarn watch --scope=create-gatsby
`Open another terminal window and go to a folder where you can easily delete the test projects:
`
cd Run the create-gatsby script
node /packages/create-gatsby/cli.js
``