Update WorkerSettings with SQL Server connection string

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.
This commit is contained in:
2026-01-22 10:14:44 +01:00
parent d4b1a4921c
commit 6eed9b1e31
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
} }
}, },
"WorkerSettings": { "WorkerSettings": {
"ConnectionString": "", "ConnectionString": "Server=SDD-VMP04-SQL17\\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=dd;Encrypt=false;TrustServerCertificate=True;",
"Debug": true, "Debug": true,
"IntervalMinutes": 1, "IntervalMinutes": 1,
"PdfBurner": { "PdfBurner": {

View File

@@ -6,7 +6,7 @@
} }
}, },
"WorkerSettings": { "WorkerSettings": {
"ConnectionString": "", "ConnectionString": "Server=SDD-VMP04-SQL17\\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=dd;Encrypt=false;TrustServerCertificate=True;",
"Debug": false, "Debug": false,
"IntervalMinutes": 1, "IntervalMinutes": 1,
"PdfBurner": { "PdfBurner": {