launchSettings.json 783 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "profiles": {
  3. "Jellyfin.Server": {
  4. "commandName": "Project",
  5. "launchBrowser": true,
  6. "applicationUrl": "http://localhost:8096",
  7. "environmentVariables": {
  8. "ASPNETCORE_ENVIRONMENT": "Development"
  9. }
  10. },
  11. "Jellyfin.Server (nowebclient)": {
  12. "commandName": "Project",
  13. "environmentVariables": {
  14. "ASPNETCORE_ENVIRONMENT": "Development"
  15. },
  16. "commandLineArgs": "--nowebclient"
  17. },
  18. "Jellyfin.Server (API Docs)": {
  19. "commandName": "Project",
  20. "launchBrowser": true,
  21. "launchUrl": "api-docs/swagger",
  22. "applicationUrl": "http://localhost:8096",
  23. "environmentVariables": {
  24. "ASPNETCORE_ENVIRONMENT": "Development"
  25. },
  26. "commandLineArgs": "--nowebclient"
  27. }
  28. }
  29. }