Browse Source

Minor copy updates

Added rename TODO suggestion for CatalogSettings
pull/68/head
Steve Smith 8 years ago
parent
commit
a1f4082ee3
3 changed files with 5 additions and 4 deletions
  1. +1
    -1
      src/Services/Basket/Basket.API/Controllers/BasketController.cs
  2. +3
    -3
      src/Services/Catalog/Catalog.API/README.md
  3. +1
    -0
      src/Services/Catalog/Catalog.API/settings.cs

+ 1
- 1
src/Services/Basket/Basket.API/Controllers/BasketController.cs View File

@ -9,7 +9,7 @@ using Microsoft.AspNetCore.Authorization;
namespace Microsoft.eShopOnContainers.Services.Basket.API.Controllers
{
//TODO NOTE: Right now this is a very chunky API, as the app evolves it is possible we would
//want to make the actions more fine graned, add basket item as an action for example.
//want to make the actions more fine grained, add basket item as an action for example.
//If this is the case we should also investigate changing the serialization format used for Redis,
//using a HashSet instead of a simple string.
[Route("/")]


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

@ -3,12 +3,12 @@ Sample reference containerized application, cross-platform and microservices arc
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.
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 infraestructure.
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 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.
- <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`


+ 1
- 0
src/Services/Catalog/Catalog.API/settings.cs View File

@ -5,6 +5,7 @@ using System.Threading.Tasks;
namespace Microsoft.eShopOnContainers.Services.Catalog.API
{
// TODO: Rename CatalogSettings for consistency?
public class Settings
{
public string ExternalCatalogBaseUrl {get;set;}


Loading…
Cancel
Save