From 98a4ba9e9949aed6a8c1834d7ea61e83fd558032 Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Sat, 27 Dec 2025 05:07:50 +0330 Subject: [PATCH] feat(config): Add staging configuration for backend URL and authentication --- src/BackOffice/wwwroot/appsettings.Staging.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/BackOffice/wwwroot/appsettings.Staging.json diff --git a/src/BackOffice/wwwroot/appsettings.Staging.json b/src/BackOffice/wwwroot/appsettings.Staging.json new file mode 100644 index 0000000..50cda35 --- /dev/null +++ b/src/BackOffice/wwwroot/appsettings.Staging.json @@ -0,0 +1,8 @@ +{ +// "GwUrl": "https://localhost:6468", + "GwUrl": "https://backoffice-bff.foursat.afrino.co", + "Authentication": { + "Authority": "https://ids.afrino.co/", + "ClientId": "client_backoffice_spa" + } +}