appsettings.json - artemovsergey/ASP GitHub Wiki
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.AspNetCore.Authentication": "Debug",
"Microsoft.EntityFrameworkCore.Database.Command": "Information"
},
"Console": {
"FormatterName": "simple",
"FormatterOptions": {
"TimestampFormat": "HH:mm:ss ",
"SingleLine": true,
"IncludeScopes": false
}
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"PostgreSQL": "Host=localhost;Port=5432;Database=TicTacToeDatabase;Username=postgres;Password=root"
}
}