Core.Inventory.DAL/Core.Inventory.DAL.API/appsettings.Development.json
2025-06-22 22:23:39 -06:00

23 lines
451 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"MongoDB": "mongodb://localhost:27017",
"Redis": "localhost:6379"
},
"MongoDb": {
"DatabaseName": "Inventory",
"LocalAudience": "InventotyDev"
},
"DetailedErrors": true,
"UseRedisCache": true,
"CacheSettings": {
"DefaultCacheDurationInMinutes": 3
}
}