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.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

docker-compose.override.yml 840B

12345678910111213141516171819202122232425262728293031
  1. version: '3.4'
  2. services:
  3. spotifyservice:
  4. environment:
  5. - ASPNETCORE_ENVIRONMENT=Development
  6. - ASPNETCORE_URLS=https://localhost:5001;http://localhost:5000
  7. ports:
  8. - "5001"
  9. - "5000"
  10. volumes:
  11. - ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
  12. - ${APPDATA}/ASP.NET/Https:/root/.aspnet/https:ro
  13. identityprovider:
  14. environment:
  15. - ASPNETCORE_ENVIRONMENT=Development
  16. - ASPNETCORE_URLS=https://+:443;http://127.0.0.1:5002
  17. ports:
  18. - "5002"
  19. - "443"
  20. volumes:
  21. - ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
  22. - ${APPDATA}/ASP.NET/Https:/root/.aspnet/https:ro
  23. spotifyworker:
  24. environment:
  25. - DOTNET_ENVIRONMENT=Development
  26. volumes:
  27. - ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro