Update data to current status.

David Sanz 2017-07-10 12:12:17 +02:00
parent c638f44564
commit 8e062434ed

@ -67,7 +67,7 @@ https://blogs.msdn.microsoft.com/stevelasker/2016/06/14/configuring-docker-for-w
### IMPORTANT: Open ports in local Firewall so Authentication to the STS (Security Token Service container) can be done through the 10.0.75.1 IP which should be available and already setup by Docker. Also needed for client remote apps like Xamarin app or SPA app in remote browser.
- You can manually create a rule in your local firewall in your development machine or you can also create that rule by just executing the <b>add-firewall-docker.ps1</b> script available in the solution's **cli-windows** folder.
- You can manually create a rule in your local firewall in your development machine or you can also create that rule by just executing the <b>add-firewall-rules-for-sts-auth-thru-docker.ps1</b> script available in the solution's **cli-windows** folder.
- Basically, you need to open the ports 5100 to 5110 that are used by the solution by creating an IN-BOUND RULE in your firewall, as shown in the screenshot below (for Windows).
<img src="img/firewall-rule-for-eshop.png">
@ -107,7 +107,7 @@ By default, clone the MASTER branch which is VS 2017 comaptible:
So make sure you switch to that branch in VS 2017 after cloning or clone that beanch with a Git command, from command prompt or PowerShell, similar to:
git clone https://github.com/dotnet/eShopOnContainers.git
git clone https://github.com/dotnet-architecture/eShopOnContainers.git
### Open eShopOnContainers solution, Build, Run
@ -116,7 +116,7 @@ So make sure you switch to that branch in VS 2017 after cloning or clone that be
- If testing/working only with the server-side applications and services, open the solution: **eShopOnContainers-ServicesAndWebApps.sln**
- If testing/working either with the servier-side applications and services plus the Xamarin mobile apps, open the solution: **eShopOnContainers.sln**
- If testing/working either with the server-side applications and services plus the Xamarin mobile apps, open the solution: **eShopOnContainers.sln**
Below you can see the full **eShopOnContainers-ServicesAndWebApps.sln** solution (server side) opened in Visual Studio 2017:
@ -127,7 +127,7 @@ Note how VS 2017 loads the docker-compose.yml files in a special node-tree so it
#### Build the Web SPA application with NPM
If you want to run/test the web eShopOnContainers SPA (Single Page Application) client in adition to the regular MVC Web app, you need to install certain dependencies for the client side and build it with "npm build", as the client side of the SPA app is based on ANGULAR 2, TypeScript and other JS frameworks and compilation that needs to happen before building the Docker images.
The process is described in detail here:
https://github.com/dotnet/eShopOnContainers/wiki/06.-Setting-the-Web-SPA-application-up
https://github.com/dotnet-architecture/eShopOnContainers/wiki/06.-Setting-the-Web-SPA-application-up
Come back to this point when you finished with the "Setting the SPA up" process.