Files
EnvelopeGenerator/EnvelopeGenerator.ServiceHost/appsettings.json
TekH e1ae3ffccb Increase log verbosity; add InitialJobState config
Changed ASP.NET Core log level to Information in development.
Added Worker.InitialJobState setting to control job startup state,
defaulting FinalizeDocumentJob to Running. Added explanatory
comments for job state values.
2026-04-14 14:47:05 +02:00

29 lines
754 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Worker": {
"DelayMilliseconds": 1000,
// InitialJobState: State values are 0 = Running, 1 = Stopped. Defaults to 1 (Stopped) if not specified.
"InitialJobState": {
"FinalizeDocumentJob": 0
}
},
"AllowedHosts": "*",
"SupportedCultures": [ "de-DE", "en-US" ],
"ConnectionStrings": {
"Default": "Server=SDD-VMP04-SQL17\\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=dd;Encrypt=false;TrustServerCertificate=True;"
},
"UseWindowsService": false,
"UseCustomKestrelEndpoints": false,
"ServerConfig": {
"Endpoints": {
"Http": {
"Url": "http://localhost:1111"
}
}
}
}