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

launchSettings.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "profiles": {
  3. "IIS Express": {
  4. "commandName": "IISExpress",
  5. "launchBrowser": true,
  6. "environmentVariables": {
  7. "ASPNETCORE_ENVIRONMENT": "Development"
  8. },
  9. "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}"
  10. },
  11. "SpotifyService": {
  12. "commandName": "Project",
  13. "launchBrowser": true,
  14. "environmentVariables": {
  15. "ASPNETCORE_ENVIRONMENT": "Development"
  16. },
  17. "dotnetRunMessages": "true",
  18. "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
  19. "applicationUrl": "https://localhost:5001;http://localhost:5000"
  20. },
  21. "Docker": {
  22. "commandName": "Docker",
  23. "launchBrowser": true,
  24. "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}",
  25. "publishAllPorts": true,
  26. "useSSL": true
  27. }
  28. },
  29. "iisSettings": {
  30. "windowsAuthentication": false,
  31. "anonymousAuthentication": true,
  32. "iisExpress": {
  33. "applicationUrl": "http://localhost:28725",
  34. "sslPort": 44342
  35. }
  36. }
  37. }