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.

SpotifyDbConfig.cs 361B

12345678910
  1. namespace IdentityProvider.Models
  2. {
  3. public class SpotifyDbConfig
  4. {
  5. public string ConnectionString { get; set; } = "mongodb://127.0.0.1:27017";
  6. public string DatabaseName { get; set; } = "spotifyDb";
  7. public string UserCollection { get; set; } = "Users";
  8. public string TracksCollection { get; set; } = "Tracks";
  9. }
  10. }