Browse Source

split install cli section

pull/13301/head
Alper Ebiçoğlu 4 years ago
committed by GitHub
parent
commit
c5cf1e17ca
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      docs/en/Tutorials/Todo/Index.md

8
docs/en/Tutorials/Todo/Index.md

@ -25,15 +25,17 @@ You can find the source code of the completed application [here](https://github.
{{end}}
## Creating a New Solution
## Installing ABP CLI Tool
We will use the [ABP CLI](../../CLI.md) to create new solutions with the ABP Framework. You can run the following command in a command-line terminal to install it:
We will use the [ABP CLI](../../CLI.md) to create new ABP solutions. You can run the following command on a terminal window to install this dotnet tool:
````bash
dotnet tool install -g Volo.Abp.Cli
````
Then create an empty folder, open a command-line terminal and execute the following command in the terminal:
## Creating a New Solution
Create an empty folder, open a command-line terminal and execute the following command in the terminal:
````bash
abp new TodoApp{{if UI=="Blazor"}} -u blazor{{else if UI=="BlazorServer"}} -u blazor-server{{else if UI=="NG"}} -u angular{{end}}{{if DB=="Mongo"}} -d mongodb{{end}}

Loading…
Cancel
Save