Files
ShopSolution-backend/Webshop.Api/appsettings.json
2025-09-05 10:47:43 +02:00

25 lines
719 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "Host=postgres-db;Port=5432;Database=webshopdb;Username=postgres;Password=MEIN_DEBUG_PASSWORT"
},
"JwtSettings": {
"Secret": "MEIN_DEBUG_PASSWORT",
"Issuer": "https://shopsolution-backend.tzbre.de",
"Audience": "webshop-users",
"ExpirationMinutes": 120
},
"Resend": {
"ApiToken": "IHRE_RESEND_API_TOKEN_HIER",
"FromEmail": "onboarding@resend.dev"
},
"App": {
"ClientUrl": "https://shopsolution-backend.tzbre.de" //erstmal backend url oder loak "ClientUrl": "http://localhost:3000"
}
}