AspNetCore.Docs.Samples/fundamentals/minimal-apis/samples/json-apis/appsettings.json

13 lines
276 B
JSON
Raw Permalink Normal View History

2023-03-16 10:49:45 +08:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"ForecastsDatabase": "Server=(localdb)\\mssqllocaldb;Database=ForecastsDb;Trusted_Connection=True;"
}
}