Skip to content

Latest commit

 

History

History
62 lines (41 loc) · 1.43 KB

2.create-a-new-abp-framework-application.md

File metadata and controls

62 lines (41 loc) · 1.43 KB

Create a new ABP Framework application

Check your dotnet version. Should be at least 8.0.x

    dotnet --version

Install or update the ABP CLI

    dotnet tool install -g Volo.Abp.Cli || dotnet tool update -g Volo.Abp.Cli

Create ABP Framework application

Open a command prompt in the repository folder and create a new ABP Framework application.

    abp new YourAppName -u blazor

Run DbMigrator project to Apply migrations

Open a command prompt in the [YourAppName].DbMigrator project and apply the database migrations.

    dotnet run

Run API and Blazor projects

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.

Commit and push everything to GitHub

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

[Previous] - [Next]