launch конфигурация для отладки

This commit is contained in:
RoyceDa
2026-02-12 14:05:06 +02:00
parent b261405a6c
commit e229b2d61f
2 changed files with 30 additions and 1 deletions

29
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,29 @@
{
// 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": [
{
"type": "java",
"request": "attach",
"name": "Attach by Process ID",
"processId": "${command:PickJavaProcess}"
},
{
"type": "java",
"name": "Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "Main",
"request": "launch",
"mainClass": "com.rosetta.im.Main",
"projectName": "rosetta-server",
"envFile": "${workspaceFolder}/.env"
}
]
}