From 230453e491ddf09015d435dcb6a5024c3a4d0d54 Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Sat, 27 Dec 2025 07:46:54 +0330 Subject: [PATCH] feat(config): add production configuration for gateway URL and authentication --- src/BackOffice/wwwroot/appsettings.Production.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/BackOffice/wwwroot/appsettings.Production.json diff --git a/src/BackOffice/wwwroot/appsettings.Production.json b/src/BackOffice/wwwroot/appsettings.Production.json new file mode 100644 index 0000000..be3476f --- /dev/null +++ b/src/BackOffice/wwwroot/appsettings.Production.json @@ -0,0 +1,8 @@ +{ +// "GwUrl": "https://localhost:6468", + "GwUrl": "https://bogw.kbs2.ir", + "Authentication": { + "Authority": "https://ids.afrino.co/", + "ClientId": "client_backoffice_spa" + } +}