From 9e2500071a59c7bc4ffa4c987942b52e8f0d7c80 Mon Sep 17 00:00:00 2001 From: Cesar De la Torre Date: Sun, 5 Mar 2017 13:49:25 -0800 Subject: [PATCH] Updates at multiple README.MD pointing to the Wiki setup procedures --- src/Services/Basket/Basket.API/README.md | 19 ++----------------- src/Services/Catalog/Catalog.API/README.md | 16 ++-------------- src/Services/Identity/Identity.API/README.md | 19 ++++--------------- src/Services/Ordering/Ordering.API/README.md | 19 ++----------------- 4 files changed, 10 insertions(+), 63 deletions(-) diff --git a/src/Services/Basket/Basket.API/README.md b/src/Services/Basket/Basket.API/README.md index 796cf031f..52261b4d9 100644 --- a/src/Services/Basket/Basket.API/README.md +++ b/src/Services/Basket/Basket.API/README.md @@ -2,23 +2,8 @@ Sample reference containerized application, cross-platform and microservices architecture. Powered by Microsoft -#Overview -This sample runs a microservices oriented application and an ASP.NET Core MVC application that consumes this services. You can find more information about how to set up docker in your machine in the global directory solution. - -#Deploy -In the global directory you will find the scripts needed to run and deploy the demo into your local docker infrastructure. - -- build-image-services-basket.ps1 Build .net applications and docker images: This PowerShell script that you will find in the root directory of the solution is responsible for building .NET applications and package in a pub folder and use docker commands to build the images needed to run the previously packaged .NET applications. - -- Compose containers in your docker local VM: Finally you have to open your favorite command tool pointing to the root directory of this project where docker-compose.yml file is located and run the command `docker-compose up` - -#Run -Once the deploy process of docker-compose finishes you have to be able to access the services in these urls: -- Basket service: http://localhost:5103 -- Identity service: http://localhost:5105 -- Basket data (Redis): listening in localhost:6379 -- Identity data (SQL Server): Server=localhost,5433;Database=aspnet-Microsoft.eShopOnContainers;User Id=sa;Password=Pass@word - +Check procedures on how to get it started at the Wiki: +https://github.com/dotnet/eShopOnContainers/wiki diff --git a/src/Services/Catalog/Catalog.API/README.md b/src/Services/Catalog/Catalog.API/README.md index 681da9965..f17a78af5 100644 --- a/src/Services/Catalog/Catalog.API/README.md +++ b/src/Services/Catalog/Catalog.API/README.md @@ -2,20 +2,8 @@ Sample reference containerized application, cross-platform and microservices architecture. Powered by Microsoft -#Overview -This sample runs a microservices oriented application and an ASP.NET Core MVC application that consumes these services. You can find more information about how to set up docker in your machine in the global directory solution. - -#Deploy -In the global directory you will find the scripts needed to run and deploy the demo into your local docker infrastructure. - -- build-image-services-catalog.ps1 Build .net applications and docker images: This PowerShell script that you will find in the root directory of the solution is responsible for building .NET applications and package in a pub folder and use docker commands to build the images needed to run the previously packaged .NET applications. - -- Compose containers in your docker local VM: Finally you have to open your favourite command tool pointing to the root directory of this project where docker-compose.yml file is located and run the command `docker-compose up` - -#Run -Once the deploy process of docker-compose finishes you have to be able to access the services in this urls: -- Catalog service: http://localhost:5101 -- Catalog data (SQL Server): Server=tcp:localhost,5434;Database=CatalogDB;User Id=sa;Password=Pass@word +Check procedures on how to get it started at the Wiki: +https://github.com/dotnet/eShopOnContainers/wiki diff --git a/src/Services/Identity/Identity.API/README.md b/src/Services/Identity/Identity.API/README.md index e8c915ad8..76e599dea 100644 --- a/src/Services/Identity/Identity.API/README.md +++ b/src/Services/Identity/Identity.API/README.md @@ -5,21 +5,10 @@ Powered by Microsoft #Overview This sample runs a microservices oriented application and a .net core Mvc application that consumes this services. You can find more information about how to set up docker in your machine in the global directory solution. -#Considerations -This service is a identity provider implemented with identity server 4, to implement this scenario is needed a public authority so to complete this flow in our local docker infrastructure we have to add a entry in our host file (windows) or equivalent in other platforms: +#Setup +This service is a identity provider or STS (Security Token Service) currently implemented with IdentityServer 4 wrapping ASP.NET Identity underneath. -identity.service 127.0.0.1 +Check procedures on how to get the sample app started at the Wiki: +https://github.com/dotnet/eShopOnContainers/wiki -In the root directory of this solution you'll find add-host.ps1 script that does this work for you (requires elevation permission). -#Deploy -In the global directory you will find the scripts needed to run and deploy the demo into your local docker infraestructure. - -- build-image-services-identity.ps1 Build .net applications and docker images: This power shell script that you will find in the root directory of the solution is the responsible of building .net applications and package in a pub folder and use docker commands to build the images needed to run the previously packaged .net applications. - -- Compose containers in your docker local VM: Finally you have to open your favourite command tool pointing to the root directory of this project where docker-compose.yml file is located and run the command `docker-compose up` - -#Run -Once the deploy process of docker-compose finishes you have to be able to access the services in this urls: -- Identity service: http://localhost:5105 -- Identity data (SQL Server): Server=localhost,5433;Database=aspnet-Microsoft.eShopOnContainers;User Id=sa;Password=Pass@word diff --git a/src/Services/Ordering/Ordering.API/README.md b/src/Services/Ordering/Ordering.API/README.md index 28c98a2fb..f1671aa85 100644 --- a/src/Services/Ordering/Ordering.API/README.md +++ b/src/Services/Ordering/Ordering.API/README.md @@ -2,23 +2,8 @@ Sample reference containerized application, cross-platform and microservices architecture. Powered by Microsoft -#Overview -This sample runs a microservices oriented application and a .net core Mvc application that consumes this services. You can find more information about how to set up docker in your machine in the global directory solution. - -#Deploy -In the global directory you will find the scripts needed to run and deploy the demo into your local docker infraestructure. - -- build-image-services-orders.ps1 Build .net applications and docker images: This power shell script that you will find in the root directory of the solution is the responsible of building .net applications and package in a pub folder and use docker commands to build the images needed to run the previously packaged .net applications. - -- Compose containers in your docker local VM: Finally you have to open your favourite command tool pointing to the root directory of this project where docker-compose.yml file is located and run the command `docker-compose up` - -#Run -Once the deploy process of docker-compose finishes you have to be able to access the services in this urls: -- Orders service: http://localhost:5102 -- Identity service: http://localhost:5105 -- Orders data (SQL Server): Server=tcp:localhost,5432;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word; -- Identity data (SQL Server): Server=localhost,5433;Database=aspnet-Microsoft.eShopOnContainers;User Id=sa;Password=Pass@word - +Check procedures on how to get it started at the Wiki: +https://github.com/dotnet/eShopOnContainers/wiki