Browse Source

Added eventbus connection

pull/151/head
Ollie Ferns 7 years ago
parent
commit
aacf8ed480
5 changed files with 47 additions and 41 deletions
  1. +1
    -1
      src/Mobile/eShopOnContainers/eShopOnContainers.Windows/Package.appxmanifest
  2. +11
    -10
      src/Services/Basket/Basket.API/appsettings.json
  3. +10
    -9
      src/Services/Catalog/Catalog.API/settings.json
  4. +14
    -12
      src/Services/Identity/Identity.API/appsettings.json
  5. +11
    -9
      src/Services/Ordering/Ordering.API/settings.json

+ 1
- 1
src/Mobile/eShopOnContainers/eShopOnContainers.Windows/Package.appxmanifest View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="54687c57-08ec-4504-8060-f36bcb62ddcf" Publisher="CN=jsuarez" Version="1.0.0.0" />
<Identity Name="54687c57-08ec-4504-8060-f36bcb62ddce" Publisher="CN=jsuarez" Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="54687c57-08ec-4504-8060-f36bcb62ddcf" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>eShopOnContainers.UWP</DisplayName>


+ 11
- 10
src/Services/Basket/Basket.API/appsettings.json View File

@ -1,12 +1,13 @@
{
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
},
"IdentityUrl": "http://localhost:5105",
"ConnectionString": "127.0.0.1"
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
},
"IdentityUrl": "http://localhost:5105",
"ConnectionString": "127.0.0.1",
"EventBusConnection": "amqp://guest:guest@localhost:5672"
}

+ 10
- 9
src/Services/Catalog/Catalog.API/settings.json View File

@ -1,12 +1,13 @@
{
"ConnectionString": "Server=tcp:127.0.0.1,5433;Initial Catalog=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=sa;Password=Pass@word",
"ExternalCatalogBaseUrl": "http://localhost:5101",
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
"ConnectionString": "Server=tcp:127.0.0.1,5433;Initial Catalog=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=sa;Password=Pass@word",
"EventBusConnection": "amqp://guest:guest@localhost:5672",
"ExternalCatalogBaseUrl": "http://localhost:5101",
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
}
}
}

+ 14
- 12
src/Services/Identity/Identity.API/appsettings.json View File

@ -1,15 +1,17 @@
{
"ConnectionStrings": {
"DefaultConnection": "Server=tcp:127.0.0.1,5433;Database=Microsoft.eShopOnContainers.Services.IdentityDb;User Id=sa;Password=Pass@word;"
},
"MvcClient": "http://localhost:5100",
"SpaClient": "http://localhost:5104",
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
"ConnectionStrings": {
"DefaultConnection": "Server=tcp:127.0.0.1,5433;Database=Microsoft.eShopOnContainers.Services.IdentityDb;User Id=sa;Password=Pass@word;",
"EventBusConnection": "amqp://guest:guest@localhost:5672"
},
"MvcClient": "http://localhost:5100",
"SpaClient": "http://localhost:5104",
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
}
}
}

+ 11
- 9
src/Services/Ordering/Ordering.API/settings.json View File

@ -1,12 +1,14 @@
{
"ConnectionString": "Server=tcp:127.0.0.1,5433;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word;",
"IdentityUrl": "http://localhost:5105",
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
"ConnectionString": "Server=tcp:127.0.0.1,5433;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word;",
"EventBusConnection": "amqp://guest:guest@localhost:5672",
"IdentityUrl": "http://localhost:5105",
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
}
}
}

Loading…
Cancel
Save