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