52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft": "Warning",
|
|
"Microsoft.Hosting.Lifetime": "Information"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"Jobs": {
|
|
"Dashboard": {
|
|
"Title": "Gerst ITS Examples - Job Dashboard (in-memory)",
|
|
"DefaultTheme": "Dark",
|
|
"RequireAuthenticatedUser": true,
|
|
"Users": [
|
|
{
|
|
"Username": "admin",
|
|
"Password": "I33bgHWHF3VrbFhT"
|
|
}
|
|
]
|
|
},
|
|
"ReportGenerationJob": {
|
|
"CronExpression": "0/15 * * * * ?",
|
|
"Name": "Report Generation"
|
|
},
|
|
"SayHelloWorldJob": {
|
|
"CronExpression": "0/30 * * * * ?",
|
|
"Name": "Say Hello World"
|
|
},
|
|
"SayHelloWorldWithDefaultNameUsageJob": {
|
|
"CronExpression": "0/30 * * * * ?"
|
|
}
|
|
},
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Microsoft": "Warning",
|
|
"System": "Warning"
|
|
}
|
|
},
|
|
"WriteTo": [
|
|
{
|
|
"Name": "Console",
|
|
"Args": {
|
|
"outputTemplate": "===> {Timestamp:HH:mm:ss} [{Level}] {Message}{NewLine}{Exception}"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|