Launchjson for civibuild sites » History » Revision 2
Revision 1 (Brienne Kordis, 09/23/2022 02:51 PM) → Revision 2/3 (Brienne Kordis, 09/23/2022 02:51 PM)
# launch.json for civibuild sites ```json ``` { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Listen for XDebug", "type": "php", "request": "launch", "port": 9001, "xdebugSettings": { "max_children": 150, "max_data": 9999, "max_depth": 6, "show_hidden": 1 } }, { "name": "XDebug Lite", "type": "php", "request": "launch", "port": 9000, "xdebugSettings": { "max_children": 50, "max_data": 255, "max_depth": 2, "show_hidden": 1 } }, { "name": "XDebug CLI", "type": "php", "request": "launch", "port": 9000, "xdebugSettings": { "max_children": 5000, "max_data": 9999, "max_depth": 6, "show_hidden": 1 } }, { "name": "Launch currently open script", "type": "php", "request": "launch", "program": "${file}", "cwd": "${fileDirname}", "port": 9000, "stopOnEntry": true } ] } ```