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.yml 444B

123456789101112131415161718192021222324
  1. version: '3.4'
  2. services:
  3. spotifyservice:
  4. image: ${DOCKER_REGISTRY-}spotifyservice
  5. build:
  6. context: .
  7. dockerfile: SpotifyService/Dockerfile
  8. identityprovider:
  9. image: ${DOCKER_REGISTRY-}identityprovider
  10. build:
  11. context: .
  12. dockerfile: IdentityProvider/Dockerfile
  13. spotifyworker:
  14. image: ${DOCKER_REGISTRY-}spotifyworker
  15. build:
  16. context: .
  17. dockerfile: SpotifyWorker/Dockerfile