Skip to content

Commit a0db135

Browse files
committed
Minor copy updates
1 parent 6d72c7d commit a0db135

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/Services/Basket/Basket.API/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ Sample reference containerized application, cross-platform and microservices arc
33
Powered by Microsoft
44

55
#Overview
6-
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.
6+
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.
77

88
#Deploy
9-
In the global directory you will find the scripts needed to run and deploy the demo into your local docker infraestructure.
9+
In the global directory you will find the scripts needed to run and deploy the demo into your local docker infrastructure.
1010

11-
- <a href='build-image-services-basket.ps1'>build-image-services-basket.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.
11+
- <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.
1212

13-
- <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`
13+
- <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`
1414

1515
#Run
16-
Once the deploy process of docker-compose finishes you have to be able to access the services in this urls:
16+
Once the deploy process of docker-compose finishes you have to be able to access the services in these urls:
1717
- Basket service: http://localhost:5103
1818
- Identity service: http://localhost:5105
1919
- Basket data (Redis): listening in localhost:6379

src/Services/Basket/Basket.API/Startup.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public void ConfigureServices(IServiceCollection services)
3737
services.AddMvc();
3838
services.Configure<BasketSettings>(Configuration);
3939

40-
//By connection here we are making sure that our service
40+
//By connecting here we are making sure that our service
4141
//cannot start until redis is ready. This might slow down startup,
42-
//but given that it is there is a delay on resolving the ip address
42+
//but given that there is a delay on resolving the ip address
4343
//and then creating the connection it seems reasonable to move
4444
//that cost to startup instead of having the first request pay the
4545
//penalty.

0 commit comments

Comments
 (0)