Installation for S&D
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
709 B

2 years ago
  1. {
  2. "folders": [
  3. {
  4. "path": "."
  5. }
  6. ],
  7. "settings": {},
  8. "launch": {
  9. "version": "0.2.0",
  10. "configurations": [
  11. {
  12. "name": "[DEBUG] Core",
  13. "type": "php",
  14. "request": "launch",
  15. "port": 9003,
  16. "log": false,
  17. "xdebugSettings": {
  18. "show_hidden": 0,
  19. "max_depth": 3
  20. },
  21. "pathMappings": {
  22. "/var/www/core/": "${workspaceFolder}/searchanddisplace-core",
  23. }
  24. },
  25. {
  26. "name": "[DEBUG] Ingest",
  27. "type": "php",
  28. "request": "launch",
  29. "port": 9004,
  30. "log": false,
  31. "xdebugSettings": {
  32. "show_hidden": 0,
  33. "max_depth": 3
  34. },
  35. "pathMappings": {
  36. "/var/www/ingest/": "${workspaceFolder}/searchanddisplace-ingest",
  37. }
  38. }
  39. ]
  40. }
  41. }