Files
DailyMeals/MealPlan.Api/appsettings.json
Piotr Kus f15bb7a916 * Extended functionalities
* Added different UIs
2026-06-24 21:43:40 +02:00

34 lines
661 B
JSON

{
"ConnectionStrings": {
"DefaultConnection": ""
},
"Jwt": {
"Secret": "",
"Issuer": "DailyMeals",
"Audience": "DailyMeals",
"AccessTokenMinutes": 15,
"RefreshTokenDays": 7
},
"CORS": {
"AllowedOrigin": ""
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
}
}
},
"AllowedHosts": "*",
"OpenAI": {
"ApiKey": "",
"Model": "gpt-4.1-mini",
"MacrosModel": "gpt-4.1-mini",
"PlanModel": "gpt-4.1-mini",
"RecipeModel": "gpt-4.1",
"MaxTokens": 4096
}
}