Browse Source

Change `Identity Server` to `Auth Server`.

pull/16371/head
maliming 3 years ago
parent
commit
d52279bd58
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 4
      docs/cs/CLI.md
  2. 10
      docs/en/CLI-New-Command-Samples.md
  3. 8
      docs/en/CLI.md
  4. 2
      docs/en/Entity-Framework-Core-Other-DBMS.md
  5. 2
      docs/en/Getting-Started-Create-Solution.md
  6. 2
      docs/en/Themes/LeptonXLite/Blazor.md
  7. 10
      docs/zh-Hans/CLI-New-Command-Samples.md
  8. 6
      docs/zh-Hans/CLI.md
  9. 2
      docs/zh-Hans/Getting-Started-Create-Solution.md

4
docs/cs/CLI.md

@ -45,9 +45,9 @@ abp new Acme.BookStore
* `mvc`: ASP.NET Core MVC. Pro tuto šablonu jsou dostupné dodatečné možnosti:
* `--tiered`: Vytvoří stupňovité řešení, kde jsou vrstvy Web a Http API fyzicky odděleny. Pokud není uvedeno, tak vytvoří vrstvené řešení, které je méně složité a vhodné pro většinu scénářů.
* `angular`: Angular. Pro tuto šablonu jsou dostupné dodatečné možnosti:
* `--separate-auth-server`: Oddělí identity server aplikaci od API host aplikace. Pokud není uvedeno, bude na straně serveru jediný koncový bod.
* `--separate-auth-server`: Oddělí Auth Server aplikaci od API host aplikace. Pokud není uvedeno, bude na straně serveru jediný koncový bod.
* `none`: Bez UI. Pro tuto šablonu jsou dostupné dodatečné možnosti:
* `--separate-auth-server`: Oddělí identity server aplikaci od API host aplikace. Pokud není uvedeno, bude na straně serveru jediný koncový bod.
* `--separate-auth-server`: Oddělí Auth Server aplikaci od API host aplikace. Pokud není uvedeno, bude na straně serveru jediný koncový bod.
* `--database-provider` nebo `-d`: Určuje poskytovatele databáze. Výchozí poskytovatel je `ef`. Dostupní poskytovatelé:
* `ef`: Entity Framework Core.
* `mongodb`: MongoDB.

10
docs/en/CLI-New-Command-Samples.md

@ -12,7 +12,7 @@ The following commands are for creating Angular UI projects:
abp new Acme.BookStore -u angular --mobile none --database-provider ef -csf
````
* **Entity Framework Core**, default app template, **separate Identity Server**, creates the project in a new folder:
* **Entity Framework Core**, default app template, **separate Auth Server**, creates the project in a new folder:
```bash
abp new Acme.BookStore -t app -u angular -m none --separate-auth-server --database-provider ef -csf
@ -30,7 +30,7 @@ The following commands are for creating Angular UI projects:
abp new Acme.BookStore -u angular --database-provider mongodb --output-folder C:\MyProjects\Acme.BookStore
```
* **MongoDB**, default app template, no mobile app, **separate Identity Server**, creates the project in a new folder:
* **MongoDB**, default app template, no mobile app, **separate Auth Server**, creates the project in a new folder:
```bash
abp new Acme.BookStore -t app -u angular -m none --separate-auth-server --database-provider mongodb -csf
@ -83,7 +83,7 @@ The following commands are for creating Blazor projects:
abp new Acme.BookStore -t app -u blazor --mobile none
```
* **Entity Framework Core**, **separate Identity Server**, mobile app included:
* **Entity Framework Core**, **separate Auth Server**, mobile app included:
```bash
abp new Acme.BookStore -u blazor --separate-auth-server
@ -105,7 +105,7 @@ The following commands are for creating Blazor projects:
abp new Acme.BookStore -t app -u blazor-server --mobile none
```
* **Entity Framework Core**, **separate Identity Server**, **separate API Host**, mobile app included:
* **Entity Framework Core**, **separate Auth Server**, **separate API Host**, mobile app included:
```bash
abp new Acme.BookStore -u blazor-server --tiered
@ -121,7 +121,7 @@ The following commands are for creating Blazor projects:
In the default app template, there is always a frontend project. In this option there is no frontend project. It has a `HttpApi.Host` project to serve your HTTP WebAPIs. It's appropriate if you want to create a WebAPI service.
* **Entity Framework Core**, separate Identity Server, creates the project in a new folder:
* **Entity Framework Core**, separate Auth Server, creates the project in a new folder:
```bash
abp new Acme.BookStore -u none --separate-auth-server -csf

8
docs/en/CLI.md

@ -113,15 +113,15 @@ For more samples, go to [ABP CLI Create Solution Samples](CLI-New-Command-Sample
* `mvc`: ASP.NET Core MVC. There are some additional options for this template:
* `--tiered`: Creates a tiered solution where Web and Http API layers are physically separated. If not specified, it creates a layered solution which is less complex and suitable for most scenarios.
* `angular`: Angular UI. There are some additional options for this template:
* `--separate-auth-server`: The Identity Server project comes as a separate project and runs at a different endpoint. It separates the Identity Server from the API Host application. If not specified, you will have a single endpoint in the server side.
* `--separate-auth-server`: The Auth Server project comes as a separate project and runs at a different endpoint. It separates the Auth Server from the API Host application. If not specified, you will have a single endpoint in the server side.
* `--pwa`: Specifies the project as Progressive Web Application.
* `blazor`: Blazor UI. There are some additional options for this template:
* `--separate-auth-server`The Identity Server project comes as a separate project and runs at a different endpoint. It separates the Identity Server from the API Host application. If not specified, you will have a single endpoint in the server side.
* `--separate-auth-server`The Auth Server project comes as a separate project and runs at a different endpoint. It separates the Auth Server from the API Host application. If not specified, you will have a single endpoint in the server side.
* `--pwa`: Specifies the project as Progressive Web Application.
* `blazor-server`: Blazor Server UI. There are some additional options for this template:
* `--tiered`: The Identity Server and the API Host project comes as separate projects and run at different endpoints. It has 3 startup projects: *HttpApi.Host*, *AuthServer* and *Blazor* and and each runs on different endpoints. If not specified, you will have a single endpoint for your web project.
* `--tiered`: The Auth Server and the API Host project comes as separate projects and run at different endpoints. It has 3 startup projects: *HttpApi.Host*, *AuthServer* and *Blazor* and and each runs on different endpoints. If not specified, you will have a single endpoint for your web project.
* `none`: Without UI. No front-end layer will be created. There are some additional options for this template:
* `--separate-auth-server`: The Identity Server project comes as a separate project and runs at a different endpoint. It separates the Identity Server from the API Host application. If not specified, you will have a single endpoint in the server side.
* `--separate-auth-server`: The Auth Server project comes as a separate project and runs at a different endpoint. It separates the Auth Server from the API Host application. If not specified, you will have a single endpoint in the server side.
* `--mobile` or `-m`: Specifies the mobile application framework. If not specified, no mobile application will be created. Available options:
* `react-native`: React Native.
* `maui`: MAUI. This mobile option is only available for ABP Commercial.

2
docs/en/Entity-Framework-Core-Other-DBMS.md

@ -83,7 +83,7 @@ You typically will change the `appsettings.json` inside the `.DbMigrator` and `.
MySQL DBMS has some slight differences than the SQL Server. Some module database mapping configuration (especially the field lengths) causes problems with MySQL. For example, some of the the [IdentityServer module](Modules/IdentityServer.md) tables has such problems and it provides an option to configure the fields based on your DBMS.
The module may provide some built-in solutions. You can configure it via `ModelBuilder`. eg: `Identity Server` module.
The module may provide some built-in solutions. You can configure it via `ModelBuilder`. eg: `Auth Server` module.
```csharp
builder.ConfigureIdentityServer(options =>

2
docs/en/Getting-Started-Create-Solution.md

@ -33,7 +33,7 @@ abp new Acme.BookStore{{if UI == "NG"}} -u angular{{else if UI == "Blazor"}} -u
{{ else }}
* `--separate-auth-server` argument is used to separate the identity server application from the API host application. If not specified, you will have a single endpoint on the server.
* `--separate-auth-server` argument is used to separate the Auth Server application from the API host application. If not specified, you will have a single endpoint on the server.
{{ end }}

2
docs/en/Themes/LeptonXLite/Blazor.md

@ -18,7 +18,7 @@ LeptonX Lite has implementation for the ABP Framework Blazor WebAssembly & Blazo
This theme is **already installed** when you create a new solution using the startup templates. If you are using any other template, you can install this theme by following the steps below:
{{if UI == "Blazor"}}
- Complete the [MVC Razor Pages Installation](AspNetCore.md#installation) for the **HttpApi.Host** application first. _If the solution is tiered/micro-service, complete the MVC steps for all MVC applications such as **HttpApi.Host** and if identity server is separated, install to the **OpenIddict**_.
- Complete the [MVC Razor Pages Installation](AspNetCore.md#installation) for the **HttpApi.Host** application first. _If the solution is tiered/micro-service, complete the MVC steps for all MVC applications such as **HttpApi.Host** and if Auth Server is separated, install to the **OpenIddict**_.
- Add **Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme** package to your **Blazor WebAssembly** application with the following command:

10
docs/zh-Hans/CLI-New-Command-Samples.md

@ -12,7 +12,7 @@
abp new Acme.BookStore -u angular --mobile none --database-provider ef -csf
````
* 在新文件夹中创建项目, **Entity Framework Core**, 默认应用程序模板, **拆分Identity Server**:
* 在新文件夹中创建项目, **Entity Framework Core**, 默认应用程序模板, **拆分Auth Server**:
```bash
abp new Acme.BookStore -t app -u angular -m none --separate-auth-server --database-provider ef -csf
@ -30,7 +30,7 @@
abp new Acme.BookStore -u angular --database-provider mongodb --output-folder C:\MyProjects\Acme.BookStore
```
* 在新文件夹中创建项目, **MongoDB**, 默认应用程序模板, 不创建移动端应用程序, **拆分Identity Server**:
* 在新文件夹中创建项目, **MongoDB**, 默认应用程序模板, 不创建移动端应用程序, **拆分Auth Server**:
```bash
abp new Acme.BookStore -t app -u angular -m none --separate-auth-server --database-provider mongodb -csf
@ -75,7 +75,7 @@
abp new Acme.BookStore -t app -u blazor --mobile none
```
* **Entity Framework Core**, **拆分Identity Server**, 包含移动端应用程序:
* **Entity Framework Core**, **拆分Auth Server**, 包含移动端应用程序:
```bash
abp new Acme.BookStore -u blazor --separate-auth-server
@ -97,7 +97,7 @@
abp new Acme.BookStore -t app -u blazor-server --mobile none
```
* **Entity Framework Core**, **拆分Identity Server**, **拆分API Host**, 包含移动端应用程序:
* **Entity Framework Core**, **拆分Auth Server**, **拆分API Host**, 包含移动端应用程序:
```bash
abp new Acme.BookStore -u blazor-server --tiered
@ -113,7 +113,7 @@
在默认应用程序模板中, 始终有一个前端项目. 在这个选项中没有前端项目. 它有一个`HttpApi.Host`项目为你的HTTP WebAPI提供服务. 这个选项适合在你想创建一个WebAPI服务时使用.
* 在新文件夹中创建项目, **Entity Framework Core**, 拆分Identity Server:
* 在新文件夹中创建项目, **Entity Framework Core**, 拆分Auth Server:
```bash
abp new Acme.BookStore -u none --separate-auth-server -csf

6
docs/zh-Hans/CLI.md

@ -110,11 +110,11 @@ abp new Acme.BookStore
* `mvc`: ASP.NET Core MVC.此模板的其他选项:
* `--tiered`: 创建分层解决方案,Web和Http Api层在物理上是分开的.如果未指定会创建一个分层的解决方案,此解决方案没有那么复杂,适合大多数场景.
* `angular`: Angular. 这个模板还有一些额外的选项:
* `--separate-auth-server`: 将Identity Server应用程序与API host应用程序分开. 如果未指定,则服务器端将只有一个端点.
* `--separate-auth-server`: 将Auth Server应用程序与API host应用程序分开. 如果未指定,则服务器端将只有一个端点.
* `blazor`: Blazor. 这个模板还有一些额外的选项:
* `--separate-auth-server`: 将Identity Server应用程序与API host应用程序分开. 如果未指定,则服务器端将只有一个端点.
* `--separate-auth-server`: 将Auth Server应用程序与API host应用程序分开. 如果未指定,则服务器端将只有一个端点.
* `none`: 无UI. 这个模板还有一些额外的选项:
* `--separate-auth-server`: 将Identity Server应用程序与API host应用程序分开. 如果未指定,则服务器端将只有一个端点.
* `--separate-auth-server`: 将Auth Server应用程序与API host应用程序分开. 如果未指定,则服务器端将只有一个端点.
* `--mobile` 或者 `-m`: 指定移动应用程序框架. 如果未指定,则不会创建任何移动应用程序,其他选项:
* `none`: 不包含移动应用程序.
* `react-native`: React Native.

2
docs/zh-Hans/Getting-Started-Create-Solution.md

@ -33,7 +33,7 @@ abp new Acme.BookStore{{if UI == "NG"}} -u angular{{else if UI == "Blazor"}} -u
{{ else }}
* `--separate-auth-server` 参数用于将Identity Server应用程序与API主机应用程序分隔开. 如果未指定, 则服务器上将只有一个端点.
* `--separate-auth-server` 参数用于将Auth Server应用程序与API主机应用程序分隔开. 如果未指定, 则服务器上将只有一个端点.
{{ end }}

Loading…
Cancel
Save