Updated the ConnectionString property in both appsettings.json and appsettings.Development.json from an empty value to a specific SQL Server connection string, including server, database, credentials, and security options. This enables the application to connect to the designated database environment.
31 lines
657 B
JSON
31 lines
657 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Debug",
|
|
"Microsoft.Hosting.Lifetime": "Information"
|
|
}
|
|
},
|
|
"WorkerSettings": {
|
|
"ConnectionString": "Server=SDD-VMP04-SQL17\\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=dd;Encrypt=false;TrustServerCertificate=True;",
|
|
"Debug": true,
|
|
"IntervalMinutes": 1,
|
|
"PdfBurner": {
|
|
"IgnoredLabels": [
|
|
"Date",
|
|
"Datum",
|
|
"ZIP",
|
|
"PLZ",
|
|
"Place",
|
|
"Ort",
|
|
"Position",
|
|
"Stellung"
|
|
],
|
|
"TopMargin": 0.1,
|
|
"YOffset": -0.3,
|
|
"FontName": "Arial",
|
|
"FontSize": 8,
|
|
"FontStyle": "Italic"
|
|
}
|
|
}
|
|
}
|