Saved Bookmarks
| 1. |
What is the purpose of the appsettings.json file? |
|
Answer» Appsettings.json CONTAINS all of the application's settings, which ALLOW you to configure your application behavior. Here is an EXAMPLE of an appsettings.json file. { "Logging": { "LOGLEVEL": { "Default": "Information", "Microsoft": "Warning", "Microsoft.Hosting.Lifetime": "Information" } },"ConnectionStrings": { "AppConnection": ""},"AWS": { "Profile": "local-test-profile", "Region": "us-west-2"},"AllowedHosts": "*"} |
|