From e229b2d61f8e193fc750779c98d9d4d32bce728b Mon Sep 17 00:00:00 2001 From: RoyceDa Date: Thu, 12 Feb 2026 14:05:06 +0200 Subject: [PATCH] =?UTF-8?q?launch=20=D0=BA=D0=BE=D0=BD=D1=84=D0=B8=D0=B3?= =?UTF-8?q?=D1=83=D1=80=D0=B0=D1=86=D0=B8=D1=8F=20=D0=B4=D0=BB=D1=8F=20?= =?UTF-8?q?=D0=BE=D1=82=D0=BB=D0=B0=D0=B4=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- .vscode/launch.json | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 443d950..030eb8d 100644 --- a/.gitignore +++ b/.gitignore @@ -28,7 +28,7 @@ Thumbs.db # Maven target -.vscode +.vscode/settings.json .idea *.iml .settings diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..777fee5 --- /dev/null +++ b/.vscode/launch.json @@ -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" + } + ] +} \ No newline at end of file