Skip to content

Instantly share code, notes, and snippets.

@johnatanbrayan
Last active October 4, 2021 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnatanbrayan/e51dfc52c5fc99e56979aa87661e0b16 to your computer and use it in GitHub Desktop.
Save johnatanbrayan/e51dfc52c5fc99e56979aa87661e0b16 to your computer and use it in GitHub Desktop.
Configuration of Launch on Vscode
{
// 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",
"name": "Spring Boot-ProjectNameApp<projectName>",
"request": "launch",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"mainClass": "br.com.qualitytecnologia.ProjectNameApp",
"projectName": "projectName",
"args": "",
"vmArgs": "-Dspring.profiles.active=dev -Dspring.config.additionalLocation=/home/user/Documents/development/project-name/src/main/resources/project.yml"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment