Browse Source

Updates at multiple README.MD pointing to the Wiki setup procedures

pull/78/head
Cesar De la Torre 8 years ago
parent
commit
9e2500071a
4 changed files with 10 additions and 63 deletions
  1. +2
    -17
      src/Services/Basket/Basket.API/README.md
  2. +2
    -14
      src/Services/Catalog/Catalog.API/README.md
  3. +4
    -15
      src/Services/Identity/Identity.API/README.md
  4. +2
    -17
      src/Services/Ordering/Ordering.API/README.md

+ 2
- 17
src/Services/Basket/Basket.API/README.md View File

@ -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.
- <a href='build-image-services-basket.ps1'>build-image-services-basket.ps1</a> <b>Build .net applications and docker images</b>: This PowerShell script that you will find in the <u>root directory of the solution</u> 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.
- <b>Compose containers in your docker local VM</b>: Finally you have to open your favorite command tool pointing to the <u>root directory of this project</u> 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

+ 2
- 14
src/Services/Catalog/Catalog.API/README.md View File

@ -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.
- <a href='build-image-services-catalog.ps1'>build-image-services-catalog.ps1</a> <b>Build .net applications and docker images</b>: This PowerShell script that you will find in the <u>root directory of the solution</u> 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.
- <b>Compose containers in your docker local VM</b>: Finally you have to open your favourite command tool pointing to the <u>root directory of this project</u> 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

+ 4
- 15
src/Services/Identity/Identity.API/README.md View File

@ -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.
- <a href='build-image-services-identity.ps1'>build-image-services-identity.ps1</a> <b>Build .net applications and docker images</b>: This power shell script that you will find in the <u>root directory of the solution</u> 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.
- <b>Compose containers in your docker local VM</b>: Finally you have to open your favourite command tool pointing to the <u>root directory of this project</u> 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

+ 2
- 17
src/Services/Ordering/Ordering.API/README.md View File

@ -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.
- <a href='build-image-services-orders.ps1'>build-image-services-orders.ps1</a> <b>Build .net applications and docker images</b>: This power shell script that you will find in the <u>root directory of the solution</u> 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.
- <b>Compose containers in your docker local VM</b>: Finally you have to open your favourite command tool pointing to the <u>root directory of this project</u> 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


Loading…
Cancel
Save