You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
joint_exc/.vscode/launch.json

16 lines
489 B

{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Launch Spring Boot App (local profile)",
"request": "launch",
"cwd": "${workspaceFolder}/backend",
"mainClass": "com.example.todoapp.TodoApplication",
"projectName": "todo-app",
"args": "",
"envFile": "${workspaceFolder}/backend/.env",
"vmArgs": "-Dspring.profiles.active=local"
}
]
}