From ea91dccb5d05fd0f91cb5666a0302564fdfb51e7 Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Mon, 28 Feb 2022 09:28:21 +0800 Subject: [PATCH] Add app-nolayers to CLI document --- docs/en/CLI.md | 9 +++++++++ docs/zh-Hans/CLI.md | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/docs/en/CLI.md b/docs/en/CLI.md index 7db562a66e..d381290508 100644 --- a/docs/en/CLI.md +++ b/docs/en/CLI.md @@ -106,6 +106,15 @@ For more samples, go to [ABP CLI Create Solution Samples](CLI-New-Command-Sample * **`module`**: [Module template](Startup-Templates/Module.md). Additional options: * `--no-ui`: Specifies to not include the UI. This makes possible to create service-only modules (a.k.a. microservices - without UI). * **`console`**: [Console template](Startup-Templates/Console.md). + * **`app-nolayers`**: Application single layer template. + * `--ui` or `-u`: Specifies the UI framework. Default framework is `mvc`. Available frameworks: + * `mvc`: ASP.NET Core MVC. + * `angular`: Angular UI. + * `blazor-server`: Blazor Server UI. + * `none`: Without UI. + * `--database-provider` or `-d`: Specifies the database provider. Default provider is `ef`. Available providers: + * `ef`: Entity Framework Core. + * `mongodb`: MongoDB. * `--output-folder` or `-o`: Specifies the output folder. Default value is the current directory. * `--version` or `-v`: Specifies the ABP & template version. It can be a [release tag](https://github.com/abpframework/abp/releases) or a [branch name](https://github.com/abpframework/abp/branches). Uses the latest release if not specified. Most of the times, you will want to use the latest version. * `--preview`: Use latest preview version. diff --git a/docs/zh-Hans/CLI.md b/docs/zh-Hans/CLI.md index b2f3825c64..5ff00c5501 100644 --- a/docs/zh-Hans/CLI.md +++ b/docs/zh-Hans/CLI.md @@ -100,6 +100,15 @@ abp new Acme.BookStore * `module`: [Module template](Startup-Templates/Module.md). 其他选项: * `--no-ui`: 不包含UI.仅创建服务模块(也称为微服务 - 没有UI). * **`console`**: [Console template](Startup-Templates/Console.md). + * **`app-nolayers`**: 应用程序单层模板 + * `--ui` 或者 `-u`: 指定ui框架.默认`mvc`框架.其他选项: + * `mvc`: ASP.NET Core MVC. + * `angular`: Angular. + * `blazor-server`: Blazor Server. + * `none`: 不包含UI. + * `--database-provider` 或 `-d`: 或者 `-d`: 指定数据库提供程序.默认是 `ef`.其他选项: + * `ef`: Entity Framework Core. + * `mongodb`: MongoDB. * `--output-folder` 或者 `-o`: 指定输出文件夹,默认是当前目录. * `--version` 或者 `-v`: 指定ABP和模板的版本.它可以是 [release tag](https://github.com/abpframework/abp/releases) 或者 [branch name](https://github.com/abpframework/abp/branches). 如果没有指定,则使用最新版本.大多数情况下,你会希望使用最新的版本. * `--preview`: 使用最新的预览版本.