From 5c5699b29dfd6e5705ac8c9aab0f3bb30fa378d5 Mon Sep 17 00:00:00 2001 From: Cesar De la Torre <cesardl@microsoft.com> Date: Mon, 13 Mar 2017 14:10:03 -0700 Subject: [PATCH 1/2] Updated 03. Setting the eShopOnContainers solution up in a Windows CLI environment (dotnet CLI, Docker CLI and VS Code) (markdown) --- ...-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md b/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md index c8b8382..77f73e2 100644 --- a/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md +++ b/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md @@ -108,8 +108,12 @@ as in the following screenshot: Move to the SPA app folder (`cd eShopOnContainers\src\Web\WebSPA`) and run `npm install` <img src="img/spa/npm-install_full.png"> -After a successful execution of npm intall, move to the next step. +* Then, run the command <b>npm run build:prod</b> as shown below: +<img src="img/spa/npm-run-build-prod.png"> + +After a successful execution of those npm commands, move to the next step. +If you have any issue here, read the [Setting the Web SPA application up](https://github.com/dotnet/eShopOnContainers/wiki/06.-Setting-the-Web-SPA-application-up) for further details. ## Build the bits through the build container image From c283349e334fb81bd6351e6bf6533bd76305dd28 Mon Sep 17 00:00:00 2001 From: Cesar De la Torre <cesardl@microsoft.com> Date: Mon, 13 Mar 2017 14:11:12 -0700 Subject: [PATCH 2/2] Updated 03. Setting the eShopOnContainers solution up in a Windows CLI environment (dotnet CLI, Docker CLI and VS Code) (markdown) --- ...dows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md b/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md index 77f73e2..df26923 100644 --- a/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md +++ b/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code).md @@ -109,7 +109,7 @@ as in the following screenshot: Move to the SPA app folder (`cd eShopOnContainers\src\Web\WebSPA`) and run `npm install` <img src="img/spa/npm-install_full.png"> -* Then, run the command <b>npm run build:prod</b> as shown below: +Then, run the command `npm run build:prod` as shown below: <img src="img/spa/npm-run-build-prod.png"> After a successful execution of those npm commands, move to the next step.