dotnet --version
dotnet tool install -g Volo.Abp.Studio.Cli || dotnet tool update -g Volo.Abp.Studio.Cli
Open a command prompt in the repository folder and create a new ABP Framework application.
abp new YourAppName -u blazor
Open a command prompt in the [YourAppName].DbMigrator project and apply the database migrations.
dotnet run
Open a command prompt in the [YourAppName].HttpApi.Host project to run the API project. You should get the Swagger window.
dotnet run
Open a command prompt in the [YourAppName].Blazor folder and run the Blazor project. You should get the Welcome to the Application window.
dotnet run
Login with username admin and password password 1q2w3E.
Stop both the API and the Blazor project by pressing CTRL+C.
Open a command prompt in the root folder of your ABP Framework project. Push all your changes to your GitHub repository.
git add .
git commit -m EndPart2
git push