Files
webzine/Webzine.WebApplication/appsettings.json
2026-04-21 09:47:09 +02:00

38 lines
962 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Webzine.Repository": "Debug"
}
},
"Webzine": {
"NombreDerniereChronique": 3,
"NombreDeTopTitres": 3,
"NombreDeLignesAdministration": 10
},
"ConnectionStrings": {
"SqliteConnection": "Data Source=Data/webzine.sqlite",
"PostGreSQLConnection": ""
},
"SpotifySeeder": {
"ClientId": "",
"ClientSecret": "",
"Market": "FR",
"Genres": [ "rock", "pop", "jazz", "hip hop", "electronic", "metal", "hyper pop", "shatta", "french%20rap" ],
"ArtistsPerGenre": 5,
"AlbumsPerArtist": 20,
"TracksPerAlbum": 40,
"MaxCommentsPerTrack": 3
},
"Keycloak": {
"Authority": "https://<keycloak-host>/realms/<your-realm>",
"ClientId": "my-aspnet-app",
"ClientSecret": "your-client-secret",
"ResponseType": "code"
},
"AllowedHosts": "*",
"EfPerformance": {
"SeuilMs": 60
}
}