From 22ea183646206ab16ff095c703070f7a40a12ed4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alper=20Ebi=C3=A7o=C4=9Flu?= <9526587+ebicoglu@users.noreply.github.com> Date: Wed, 14 Aug 2024 12:23:18 +0300 Subject: [PATCH] Update new-command-samples.md --- docs/en/cli/new-command-samples.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docs/en/cli/new-command-samples.md b/docs/en/cli/new-command-samples.md index 0e6796a8ca..06099a3e29 100644 --- a/docs/en/cli/new-command-samples.md +++ b/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