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.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }