diff --git a/docs/en/Getting-Started-Angular-Template.md b/docs/en/Getting-Started-Angular-Template.md index ed4d062f26..1bd605cd65 100644 --- a/docs/en/Getting-Started-Angular-Template.md +++ b/docs/en/Getting-Started-Angular-Template.md @@ -1,4 +1,4 @@ -## Getting Started With the Angular Startup Template +## Getting Started With the Angular Application Template This tutorial explain how to create a new Angular application using the startup template, configure and run it. @@ -28,6 +28,8 @@ The created solution requires; * [Visual Studio 2017 (v15.9.0+)](https://visualstudio.microsoft.com/tr/downloads/) * [.NET Core 2.2+](https://www.microsoft.com/net/download/dotnet-core/) +* [Node v10.16+](https://nodejs.org) +* [Yarn v1.17+](https://yarnpkg.com/) ### The Solution Structure @@ -117,6 +119,8 @@ Open your favorite browser and go to `localhost:4200` URL. Initial username is ` The startup template includes the **identity management** and **tenant management** modules. Once you login, the Administration menu will be available where you can manage **tenants**, **roles**, **users** and their **permissions**. +> We recommend [Visual Studio Code](https://code.visualstudio.com/) as the editor for the Angular project, but you are free to use your favorite editor. + ### What's Next? * [Application development tutorial](Tutorials/Angular/Part-I.md) diff --git a/templates/app/angular/package.json b/templates/app/angular/package.json index b638f21535..e2575ac04b 100644 --- a/templates/app/angular/package.json +++ b/templates/app/angular/package.json @@ -13,10 +13,10 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "^0.7.6", - "@abp/ng.identity": "^0.7.6", - "@abp/ng.tenant-management": "^0.7.6", - "@abp/ng.theme.basic": "^0.7.6", + "@abp/ng.account": "^0.8.0", + "@abp/ng.identity": "^0.8.0", + "@abp/ng.tenant-management": "^0.8.0", + "@abp/ng.theme.basic": "^0.8.0", "@angular/animations": "~8.1.2", "@angular/common": "~8.1.2", "@angular/compiler": "~8.1.2",