run_backend_performance.ps1 220 B

12345678910
  1. $ErrorActionPreference = "Stop"
  2. locust -f "$PSScriptRoot\locustfile_backend.py" `
  3. --host "http://localhost:3000" `
  4. --headless `
  5. -u 30 `
  6. -r 5 `
  7. -t 3m `
  8. --html "$PSScriptRoot\backend-performance-report.html"