25 lines
424 B
JSON
25 lines
424 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"Cors": {
|
|
"AllowedOrigins": [
|
|
"http://127.0.0.1:5500",
|
|
"http://localhost:5500"
|
|
]
|
|
},
|
|
"Kestrel": {
|
|
"Endpoints": {
|
|
"Http": {
|
|
"Url": "http://localhost:5000"
|
|
}
|
|
}
|
|
},
|
|
"Spoonacular": {
|
|
"ApiKey": "YOUR_SPOONACULAR_API_KEY"
|
|
}
|
|
}
|