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.
16 lines
489 B
16 lines
489 B
5 months ago
|
{
|
||
|
"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"
|
||
|
}
|
||
|
]
|
||
|
}
|