astro/packages/create-astro
Mikkel Tønder 3e1bdb1a3b
create-astro: Add a helpful message for the "could not find commit hash for ..." error (#1984)
* Add a helpful message for the "could not find commit hash for ..." error. This error mostly shows when someone tries to initialize a new project but git is not installed on their system.
2021-11-23 08:11:56 -06:00
..
src create-astro: Add a helpful message for the "could not find commit hash for ..." error (#1984) 2021-11-23 08:11:56 -06:00
test [ci] yarn format 2021-07-07 20:10:09 +00:00
CHANGELOG.md Version Packages (#1928) 2021-11-19 13:01:50 -08:00
create-astro.mjs [ci] yarn format 2021-09-06 08:25:23 +00:00
package.json Version Packages (#1928) 2021-11-19 13:01:50 -08:00
README.md Implements templates from external repos (#603) 2021-07-06 15:14:22 -04:00
tsconfig.json tsconfig fix (#752) 2021-07-19 18:23:39 -07:00
yarn.lock redesign create-astro (#301) 2021-06-08 11:10:56 -04:00

create-astro

Scaffolding for Astro projects

With NPM:

npm init astro

With Yarn:

yarn create astro

create-astro automatically runs in interactive mode, but you can also specify your project name and template with command line arguments.

# npm 6.x
npm init astro my-astro-project --template starter

# npm 7+, extra double-dash is needed:
npm init astro my-astro-project -- --template starter

# yarn
yarn create astro my-astro-project --template starter

Check out the full list of example starter templates, available on GitHub.

You can also use any GitHub repo as a template:

npm init astro my-astro-project -- --template cassidoo/shopify-react-astro

CLI Flags

May be provided in place of prompts

Name Description
--template Specify the template name (list)
--commit Specify a specific Git commit or branch to use from this repo (by default, main branch of this repo will be used)