Files
ShopSolution-backend/Webshop.Api/appsettings.Development.json
Tizian.Breuch d2c99fb32a settings dev
2025-07-23 10:18:12 +02:00

18 lines
454 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "Host=localhost;Port=5432;Database=webshopdb;Username=postgres;Password=MEIN_DEBUG_PASSWORT"
},
"JwtSettings": {
"Secret": "MEIN_DEBUG_PASSWORT",
"Issuer": "https://dein-webshop.com",
"Audience": "webshop-users",
"ExpirationMinutes": 120
}
}