debug conf

This commit is contained in:
kazusa 2025-07-23 15:07:16 +08:00
parent 6a482aa9fb
commit 6ea438e5f7
1 changed files with 15 additions and 0 deletions

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

@ -0,0 +1,15 @@
{
// ... existing code ...
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug DemoApplication",
"request": "launch",
"mainClass": "io.github.kazusa.pressmonster.demo.DemoApplication",
"projectName": "demo",
"vmArgs": "-javaagent:/Users/kazusa/project/java/press-monster-java/press-monster-agent/press-monster-agent.jar -Dpress.monster.config=/Users/kazusa/project/java/press-monster-java/press-monster-agent/agent.properties",
"javaExec": "/Users/kazusa/.sdkman/candidates/java/current/bin/java"
}
]
}