Skip to content

Commit ef80d8c

Browse files
committed
Update readme to include publish instructions
1 parent 5f9e1c7 commit ef80d8c

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

README.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,19 +93,32 @@ You have three choices when it comes to how you prefer to run the app. You can e
9393

9494
> It will take some time during the first run to download all client side dependencies.
9595
96-
### 3. Using docker
96+
Browse to [http://localhost:5000](http://localhost:5000) for ASP.​NET Core + Vue app or browse to [http://localhost:8080](http://localhost:8080) for Vue app only.
97+
98+
![Application screenshot](./screenshot.png)
99+
100+
## Publish the application
101+
102+
### 1. Folder output
103+
104+
* Run the .NET publish command using Release configuration: `dotnet publish -c Release`
105+
106+
or
107+
108+
* Follow the Publish wizard in Visual Studio selecting Folder profile.
109+
110+
### 2. Docker output
97111

98112
* Run the following command in a cmd window to build the docker image:
99113
`docker build -t <IMAGE_NAME> .`
100114

115+
> ATTENTION! Do not miss the final dot to build the current directory
116+
101117
* Run the application in a cmd window by this command:
102118
`docker run -d -p 5000:80 <IMAGE_NAME>`
103119

104120
## View your application running
105121

106-
Browse to [http://localhost:5000](http://localhost:5000) for ASP.&#8203;NET Core + Vue app or browse to [http://localhost:8080](http://localhost:8080) for Vue app only.
107-
108-
![Application screenshot](./screenshot.png)
109122

110123
## Recommended plugin for debugging Vue
111124

0 commit comments

Comments
 (0)