Files
directus/packages/create-directus-project/readme.md
Nicola Krumschmidt 8f54c8d40d Recommend npm init directus-project to create a project (#8590)
This slightly nicer syntax was introduced back in "npm@6.1.0".
"node@12.20.0", which is the minimum version we require, ships with "npm@6.14.8".
"npm@6" versions below "6.1.0" were never actually shipped with any node version, so it should be very safe to use this syntax.
2021-10-06 09:56:48 -04:00

16 lines
310 B
Markdown

# create-directus-project
A small installer util that will create a directory, add boilerplate folders, and install Directus through npm.
## Installation
This package is meant to be used through `npx` or `yarn`:
```
npm init directus-project my-project
```
```
yarn create directus-project my-project
```