From 32edc6474d9520f6fc1abcdf81f591e23a136c00 Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 9 Apr 2026 13:22:59 +0200 Subject: [PATCH] Add SupportedCultures and DB connection to appsettings.json Added "SupportedCultures" for localization support and a "ConnectionStrings" section with a default SQL Server connection string. Also reformatted "AllowedHosts" for consistency. --- EnvelopeGenerator.ServiceHost/appsettings.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/EnvelopeGenerator.ServiceHost/appsettings.json b/EnvelopeGenerator.ServiceHost/appsettings.json index 5cc1e1ea..45da6a77 100644 --- a/EnvelopeGenerator.ServiceHost/appsettings.json +++ b/EnvelopeGenerator.ServiceHost/appsettings.json @@ -8,5 +8,9 @@ "Worker": { "DelayMilliseconds": 1000 }, - "AllowedHosts": "*" -} + "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;" + } +} \ No newline at end of file