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.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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