Public Access
1
0

update Docker and VS Code configurations for improved debugging

This commit is contained in:
2025-08-11 10:50:12 -04:00
parent 6c26b77fb5
commit 103080ba1b
7 changed files with 61 additions and 52 deletions

26
.vscode/launch.json vendored
View File

@@ -1,12 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Docker: Attach to Node",
"type": "docker",
"request": "attach",
"platform": "node",
"containerName": "eleventy"
}
]
}
"version": "0.2.0",
"configurations": [
{
"name": "Docker: Attach to Node",
"type": "node",
"request": "attach",
"port": 9229,
"address": "localhost",
"localRoot": "${workspaceFolder}",
"remoteRoot": "/usr/src/app",
"restart": true,
"preLaunchTask": "docker-compose-up"
}
]
}