Browse Source

Merge pull request #18846 from abpframework/auto-merge/rel-8-0/2443

Merge branch dev with rel-8.0
pull/18861/head
maliming 2 years ago
committed by GitHub
parent
commit
a286e20272
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 33
      docs/en/Getting-Started-Running-Solution.md

33
docs/en/Getting-Started-Running-Solution.md

@ -127,6 +127,29 @@ abp bundle
> **Note**: Before starting the application, run `abp install-libs` command in your Web directory to restore the client-side libraries. This will populate the `libs` folder.
{{ if UI == "BlazorServer" }}
> **Important:** The `.AuthServer` application serves as the **Authentication Server** for the `.Blazor` application. It is essential to have the `.AuthServer` application running in the background to ensure the proper functioning of the `.Blazor` application.
To do this, open terminal in `.AuthServer` project folder and run the following command.
````bash
dotnet run
````
Once the `.AuthServer`application has started, it is time to run `.HttpApi.Host` application.
> **Important:** Prior to launching the `.Blazor` project, it is essential to execute the `.HttpApi.Host` application as well.
To do this, open terminal in `.HttpApi.Host` project folder and run the following command.
````bash
dotnet run
````
Once the `.AuthServer` and `.HttpApi.Host` applications has started, you can proceed to run the `.Blazor` project.
{{ end # UI }}
{{ if Tiered == "Yes" }}
> Tiered solutions use **Redis** as the distributed cache. Ensure that it is installed and running in your local computer. If you are using a remote Redis Server, set the configuration in the `appsettings.json` files of the projects below.
@ -195,6 +218,16 @@ You can see the application APIs and test them here. Get [more info](https://swa
### Running the Blazor Application (Client Side)
> **Important:** The `.HttpApi.Host` application serves as the **Authentication Server** for the `.Blazor` application. It is essential to have the `.HttpApi.Host` application running in the background to ensure the proper functioning of the `.Blazor` application.
To do this, you can open terminal in `.HttpApi.Host` project folder and run the following command.
````bash
dotnet run
````
Once the `.HttpApi.Host` application has started, you can proceed to run the `.Blazor` application.
Ensure that the `.Blazor` project is the startup project and run the application.
> Use Ctrl+F5 in Visual Studio (instead of F5) to run the application without debugging. If you don't have a debug purpose, this will be faster.

Loading…
Cancel
Save