social-networking-library/.vscode/launch.json

16 lines
351 B
JSON
Raw Normal View History

2024-09-27 15:25:48 +02:00
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug Tomcat Remote",
"request": "attach",
"hostName": "localhost", // Usa l'IP del server
"port": 9000,
"projectName": "social-networking-library-ws",
"preLaunchTask": "Start SSH Tunnel" // Task per aprire il tunnel
}
]
}