Skip to content

Commit a0a714c

Browse files
enimisteMarkPieszak
authored andcommitted
docs(readme): update install info
1 parent 14dc0d5 commit a0a714c

File tree

1 file changed

+28
-9
lines changed

1 file changed

+28
-9
lines changed

README.md

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,22 +41,41 @@ _Looking for ASP.NET Core & Angular 7.x+ Universal starter? [click here](https:/
4141

4242
# Installation:
4343

44-
Download the template right from **Nuget**.
44+
### Nuget | Dotnet Templates
45+
46+
Find the template through NuGet package manager inside Visual Studio or [here](https://www.nuget.org/packages/aspnetcore-vuejs)
47+
48+
> Or download it via dotnet templates
4549
4650
```ts
51+
// Make a directory where you want the project
52+
mkdir my-vue-starter && cd my-vue-starter
53+
54+
// Download the dotnet template
4755
dotnet new -i aspnetcore-vuejs
56+
57+
// Run and install the template
58+
dotnet new vuejs
59+
60+
// Make sure you install the dependencies
61+
npm install
4862
```
4963

50-
# Getting Started:
51-
* Create folder from template: `dotnet new vuejs` ([Official documentation](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-new?tabs=netcore2x))
52-
* This will automatically run `dotnet restore` unless you install with `dotnet new vuejs --skipRestore`
53-
* Restore Node dependencies by running `npm install`
64+
Now you can open the project via Visual Studio or VSCode, press F5 to run the application!
5465

55-
- or -
66+
Note:
67+
68+
* This will automatically run `dotnet restore` unless you install with `dotnet new vuejs --skipRestore`
69+
* ([Official documentation](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-new?tabs=netcore2x))
70+
* This will automatically run `dotnet restore` unless you install with `dotnet new vuejs --skipRestore`
5671

57-
Clone the repo itself:
72+
### -OR- Clone this Repo itself
5873

59-
`git clone https://github.com/TrilonIO/aspnetcore-Vue-starter.git`
74+
* Clone this repository : `$ git clone https://github.com/MarkPieszak/aspnetcore-Vue-starter.git VueWeb`
75+
* `$ cd VueWeb/content`
76+
* `$ dotnet restore && npm install`
77+
* (If using VSCode) `$ code .`
78+
* (If using Visual Studio) Open the `*.sln` file with "Open project" from Visual Studio IDE
6079

6180

6281
## Start the application:
@@ -70,7 +89,7 @@ Run the application using `dotnet run` or `npm run dev`
7089
Run the application in VSCode or Visual Studio 2017 by hitting `F5`.
7190

7291
## View your application running
73-
Browse to [http://localhost:5000](http://localhost:5000)
92+
When running the app using debug menu or `F5` VS open auto the app in the browser;
7493

7594
# Recommended plugin for debugging VueJS
7695

0 commit comments

Comments
 (0)