From 7cd08411b931bfea335b6d4e498375336420c0b5 Mon Sep 17 00:00:00 2001 From: Sergio Matias Date: Sat, 21 Jun 2025 23:58:49 -0600 Subject: [PATCH] Add local appsettings --- Core.Thalos.DAL.API/appsettings.Local.json | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Core.Thalos.DAL.API/appsettings.Local.json diff --git a/Core.Thalos.DAL.API/appsettings.Local.json b/Core.Thalos.DAL.API/appsettings.Local.json new file mode 100644 index 0000000..03d4442 --- /dev/null +++ b/Core.Thalos.DAL.API/appsettings.Local.json @@ -0,0 +1,26 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "ConnectionStrings": { + "MongoDB": "mongodb://admin_agile:Admin%40agileWebs@portainer.white-enciso.pro:27017/?authMechanism=SCRAM-SHA-256", + "Redis": "http://100.123.31.103:6379" + }, + "MongoDb": { + "DatabaseName": "Thalos", + "LocalAudience": "" + }, + "DetailedErrors": true, + "UseRedisCache": true, + "CacheSettings": { + "DefaultCacheDurationInMinutes": 3 + }, + "ServiceSettings": { + "ApplicationName": "thalos", + "LayerName": "dal" + } +}