Update EcmContext connection string in appsettings.json

The `ConnectionStrings` section in the `appsettings.json` file was updated. The `EcmContext` connection string, previously an empty string, was replaced with a connection string pointing to a SQL Server instance.

The new connection string includes the server name, database name, user ID, password, and a flag to trust the server certificate. This change enables the application to connect to the specified SQL Server database.
This commit is contained in:
OlgunR
2026-05-21 16:49:49 +02:00
parent dc551c2313
commit d351a3d577

View File

@@ -7,7 +7,7 @@
}, },
"AllowedHosts": "*", "AllowedHosts": "*",
"ConnectionStrings": { "ConnectionStrings": {
"EcmContext": "" "EcmContext": "Server=SDD-VMP04-SQL17\\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=dd;TrustServerCertificate=True;"
}, },
"PdfExtraction": { "PdfExtraction": {
"OutputDirectory": "C:\\PdfExtractions" "OutputDirectory": "C:\\PdfExtractions"