launch.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "sentry frontend",
  9. "type": "chrome",
  10. "request": "launch",
  11. "url": "http://dev.getsentry.net:8000",
  12. "webRoot": "${workspaceRoot}/src/sentry/static/sentry/app"
  13. },
  14. {
  15. "name": "sentry backend",
  16. "type": "python",
  17. "request": "launch",
  18. "stopOnEntry": true,
  19. "program": "${workspaceRoot}/.venv/bin/sentry",
  20. "args": ["devserver"],
  21. "cwd": "${workspaceRoot}",
  22. "debugOptions": ["WaitOnAbnormalExit", "WaitOnNormalExit", "RedirectOutput"]
  23. },
  24. {
  25. "name": "sentry backend debug",
  26. "type": "python",
  27. "request": "launch",
  28. "program": "${workspaceRoot}/.venv/bin/sentry",
  29. "args": ["devserver", "--debug-server", "--no-pretty"],
  30. "cwd": "${workspaceRoot}"
  31. },
  32. {
  33. "name": "jest",
  34. "type": "node",
  35. "request": "launch",
  36. "protocol": "inspector",
  37. "program": "${workspaceFolder}/node_modules/.bin/jest",
  38. "internalConsoleOptions": "openOnSessionStart",
  39. "args": ["--runInBand"]
  40. },
  41. {
  42. "name": "pytest - current file",
  43. "type": "python",
  44. "request": "launch",
  45. "module": "pytest",
  46. "args": ["${file}"],
  47. "django": true
  48. }
  49. ]
  50. }