Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.53 KB

Getting-Started-Setup-Environment-Single-Layer.md

File metadata and controls

49 lines (32 loc) · 1.53 KB

Getting Started

//[doc-params]
{
    "UI": ["MVC", "Blazor", "BlazorServer", "NG"],
    "DB": ["EF", "Mongo"]
}

This document assumes that you prefer to use {{ UI_Value }} as the UI framework and {{ DB_Value }} as the database provider. For other options, please change the preference on top of this document.

Setup Your Development Environment

First things first! Let's setup your development environment before creating the project.

Pre-Requirements

The following tools should be installed on your development machine:

{{ if UI != "Blazor" }}

1 Yarn v2 works differently and is not supported.

{{ end }}

Install the ABP CLI

ABP CLI is a command line interface that is used to automate some common tasks for ABP based solutions. First, you need to install the ABP CLI using the following command:

dotnet tool install -g Volo.Abp.Cli

If you've already installed, you can update it using the following command:

dotnet tool update -g Volo.Abp.Cli

Next Step