This commit is contained in:
Peter Rossa
2023-05-10 12:23:25 +02:00
commit af29efa0f3
131 changed files with 16889 additions and 0 deletions

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

@@ -0,0 +1,14 @@
{
"configurations": [
{
"type": "java",
"name": "Spring Boot-ApiApplication<api>",
"request": "launch",
"cwd": "${workspaceFolder}",
"mainClass": "com.rossa.api.ApiApplication",
"projectName": "api",
"args": "",
"envFile": "${workspaceFolder}/.env"
}
]
}