* Initial dev container changes * Update readme's * Clean up dev container * Cleanup * Use in-memory db * Indent * Update devcontainerreadme.md * Update appsettings.json * Update appsettings.json --------- Co-authored-by: bamurtaugh <brmurtau@microsoft.com>
21 lines
613 B
JSON
21 lines
613 B
JSON
{
|
|
"baseUrls": {
|
|
"apiBase": "https://localhost:5099/api/",
|
|
"webBase": "https://localhost:44315/"
|
|
},
|
|
"ConnectionStrings": {
|
|
"CatalogConnection": "Server=(localdb)\\mssqllocaldb;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.CatalogDb;",
|
|
"IdentityConnection": "Server=(localdb)\\mssqllocaldb;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.Identity;"
|
|
},
|
|
"CatalogBaseUrl": "",
|
|
"Logging": {
|
|
"IncludeScopes": false,
|
|
"LogLevel": {
|
|
"Default": "Warning",
|
|
"Microsoft": "Warning",
|
|
"System": "Warning"
|
|
},
|
|
"AllowedHosts": "*"
|
|
}
|
|
}
|