Browse Source

Update new-command-samples.md

pull/20502/head
Alper Ebiçoğlu 2 years ago
committed by GitHub
parent
commit
22ea183646
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 23
      docs/en/cli/new-command-samples.md

23
docs/en/cli/new-command-samples.md

@ -36,6 +36,12 @@ The following commands are for creating Angular UI projects:
abp new Acme.BookStore -t app -u angular -m none --separate-auth-server --database-provider mongodb -csf
```
* **No DB migration!**, the DB migration will not be generated
```bash
abp new Acme.BookStore -u angular --skip-migrations --skip-migrator
```
## MVC
The following commands are for creating MVC UI projects:
@ -72,7 +78,12 @@ The following commands are for creating MVC UI projects:
_Note that Public Website is only included in PRO templates._
* **No initial configuration!**, the DB migration will not be generated, client-side scripts will not be installed and bundling will not run
```bash
abp new Acme.BookStore -u mvc --skip-migrations --skip-migrator --dont-run-install-libs --dont-run-bundling
```
## Blazor WebAssembly
The following commands are for creating Blazor WASM projects:
@ -94,6 +105,12 @@ The following commands are for creating Blazor WASM projects:
```bash
abp new Acme.BookStore -u blazor --database-provider mongodb --mobile none -csf
```
* **Client-side libraries are not loaded automatically!**, the libs folder will not be installed from ([NPM](https://www.npmjs.com/))
```bash
abp new Acme.BookStore -u blazor --dont-run-install-libs
```
## Blazor Server
@ -116,6 +133,12 @@ The following commands are for creating Blazor projects:
```bash
abp new Acme.BookStore -u blazor --database-provider mongodb --mobile none -csf
```
* **Skip bundling for the packages**,
```bash
abp new Acme.BookStore -u blazor --dont-run-bundling
```
## No UI

Loading…
Cancel
Save