зеркало из https://github.com/nextcloud/cookbook.git
56 строки
1.7 KiB
JSON
56 строки
1.7 KiB
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": "Python: Remote Attach",
|
|
"type": "python",
|
|
"request": "attach",
|
|
"connect":
|
|
{
|
|
"host":"localhost",
|
|
"port":5678
|
|
},
|
|
"pathMappings": [
|
|
{
|
|
"localRoot":"${workspaceFolder:cookbook}/.github/actions/run-tests",
|
|
"remoteRoot":"."
|
|
}
|
|
],
|
|
"justMyCode":true
|
|
},
|
|
//{
|
|
// "name": "Xdebug on 9000",
|
|
// "type": "php",
|
|
// "request": "launch",
|
|
// "port": 9000,
|
|
// "pathMappings": {
|
|
// "/var/www/html/custom_apps/cookbook": "${workspaceFolder:cookbook}",
|
|
// "/var/www/html": "${workspaceFolder:base}"
|
|
// }
|
|
//},
|
|
{
|
|
"name": "Xdebug PHPUnit",
|
|
"type": "php",
|
|
"request": "launch",
|
|
"port": 9000,
|
|
"pathMappings": {
|
|
"/var/www/html/custom_apps/cookbook": "${workspaceFolder:cookbook}",
|
|
"/var/www/html": "${workspaceFolder:base}"
|
|
}
|
|
},
|
|
{
|
|
"name": "Xdebug on 9003",
|
|
"type": "php",
|
|
"request": "launch",
|
|
"port": 9003,
|
|
"pathMappings": {
|
|
"/var/www/html/apps-extra/cookbook": "${workspaceFolder:cookbook}",
|
|
"/var/www/html": "${workspaceFolder:base}"
|
|
}
|
|
}
|
|
]
|
|
}
|