Blazor & WASM in combination to get statistics from Spotify API for performing the song analysis. With separate microservices for auth, Spotify, user data tracking, and application, connected through gRPC with Polly.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

appsettings.json 511B

123456789101112131415161718192021222324
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "AllowedHosts": "*",
  9. "Kestrel": {
  10. "EndpointDefaults": {
  11. "Protocols": "Http2"
  12. }
  13. },
  14. "SpotifyDb": {
  15. "ConnectionString": "mongodb://127.0.0.1:27017",
  16. "DatabaseName": "spotifyDb",
  17. "UserCollection": "Users",
  18. "TracksCollection": "Tracks"
  19. }
  20. //"SpotifyConfig": {
  21. // "SpotifyURL": "https://api.spotify.com/v1/",
  22. // "MediaType": "application/json"
  23. //}
  24. }