Because of the breaking change in behavior of .net 7 ef core, it should be trusted, otherwise wouldn't work. https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-7.0/breaking-changes#mitigations
18 lines
727 B
JSON
18 lines
727 B
JSON
{
|
|
"ConnectionStrings": {
|
|
"CatalogConnection": "Server=sqlserver,1433;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.CatalogDb;User Id=sa;Password=@someThingComplicated1234;Trusted_Connection=false;TrustServerCertificate=true;",
|
|
"IdentityConnection": "Server=sqlserver,1433;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.Identity;User Id=sa;Password=@someThingComplicated1234;Trusted_Connection=false;TrustServerCertificate=true;"
|
|
},
|
|
"baseUrls": {
|
|
"apiBase": "http://localhost:5200/api/",
|
|
"webBase": "http://host.docker.internal:5106/"
|
|
},
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Debug",
|
|
"System": "Information",
|
|
"Microsoft": "Information"
|
|
}
|
|
}
|
|
}
|