Added eventbus connection

This commit is contained in:
Ollie Ferns 2017-04-12 10:28:24 +01:00
parent 8a05469139
commit aacf8ed480
5 changed files with 47 additions and 41 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?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"> <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" /> <mp:PhoneIdentity PhoneProductId="54687c57-08ec-4504-8060-f36bcb62ddcf" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties> <Properties>
<DisplayName>eShopOnContainers.UWP</DisplayName> <DisplayName>eShopOnContainers.UWP</DisplayName>

View File

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

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

View File

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

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;", "ConnectionString": "Server=tcp:127.0.0.1,5433;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word;",
"IdentityUrl": "http://localhost:5105", "EventBusConnection": "amqp://guest:guest@localhost:5672",
"Logging": {
"IncludeScopes": false, "IdentityUrl": "http://localhost:5105",
"LogLevel": { "Logging": {
"Default": "Debug", "IncludeScopes": false,
"System": "Information", "LogLevel": {
"Microsoft": "Information" "Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
} }
}
} }