From 44ef1661098ffbe1eced0a82760ad9740f415b99 Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Tue, 17 Feb 2026 01:46:10 +0330 Subject: [PATCH] fix: update appsettings.Development.json with necessary configuration settings --- src/FrontOffice.Main/appsettings.Development.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/FrontOffice.Main/appsettings.Development.json b/src/FrontOffice.Main/appsettings.Development.json index 770d3e9..36c36cb 100644 --- a/src/FrontOffice.Main/appsettings.Development.json +++ b/src/FrontOffice.Main/appsettings.Development.json @@ -1,9 +1,18 @@ { - "DetailedErrors": true, + "GwUrl": "https://cms.kbs2.ir", + "DownloadUrl": "", + "EncryptionSettings": { + "Key": "kmcQ3XTmH4mrdh8VHziuscyf8LLYjG//Kyni81nH/0E=", + "IV": "1wyF3Tt142MOkCpIyCxh/g==" + }, + "SignalR": { + "HubPath": "/hubs/token-notification" + }, "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "Warning" } - } + }, + "AllowedHosts": "*" }