2019-06-20 15:45:14 +02:00
|
|
|
# Create strapi app
|
2019-07-02 17:29:00 +02:00
|
|
|
|
|
|
|
This package includes the `create-strapi-app` CLI to make the creation of a strapi project lighter.
|
|
|
|
|
|
|
|
## How to use
|
|
|
|
|
|
|
|
### Quick usage (recommended)
|
|
|
|
|
|
|
|
Using yarn create command
|
|
|
|
|
|
|
|
```
|
2019-08-02 19:15:43 +02:00
|
|
|
yarn create strapi-app my-project
|
2019-07-02 17:29:00 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Using npx
|
|
|
|
|
|
|
|
```
|
2019-08-02 19:15:43 +02:00
|
|
|
npx create-strapi-app my-project
|
2019-07-02 17:29:00 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
### Manual install
|
|
|
|
|
2019-07-02 17:38:59 +02:00
|
|
|
Using yarn
|
|
|
|
|
2019-07-02 17:29:00 +02:00
|
|
|
```
|
|
|
|
yarn global add create-strapi-app
|
|
|
|
create-strapi-app my-app
|
|
|
|
```
|
|
|
|
|
2019-07-02 17:38:59 +02:00
|
|
|
Using npm
|
2019-07-02 17:29:00 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
npm install -g create-strapi-app
|
|
|
|
create-strapi-app my-app
|
|
|
|
```
|