mapguesser/.vscode/launch.json
Pőcze Bence a61d2951d7 MAPG-2 Init project MapGuesser
* add composer.json and basic environment
 * add basic classes
 * add basic map with JS and CSS (with demo functionality)
 * add files for docker-compose
 * add launch.json for Docker debug
 * add README
2020-05-17 19:29:06 +02:00

15 lines
318 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug in Docker",
"type": "php",
"request": "launch",
"port": 9000,
"pathMappings": {
"/var/www/mapguesser": "${workspaceRoot}",
}
}
]
}