Get Started
Create New Project
This wizard creates a new project from the startup template which is properly configured to jump start your project.
Need Help?
Read The Documentation
Installing the ABP CLI
ABP CLI is the fastest way to start a new solution with the ABP framework. Install the ABP CLI using a command line window:
Need Help?
Read The Documentation
Using CLI
> dotnet tool install -g Volo.Abp.Cli
Create a new solution
> abp new Acme.BookStore
You can use different levels of namespaces; e.g. BookStore, Acme.BookStore or Acme.Retail.BookStore.
The new command creates a layered MVC application with Entity Framework Core as the database provider. However, it has additional options.
# Use Blazor as the UI framework
> abp new Acme.BookStore -u blazor
# Create a module template
> abp new Acme.BookStore.Payment -t module
Check out the ABP CLI document for more options or select the "Direct Download" tab above.