Files
familienarchiv/.vscode/launch.json
Marcel 0cfbf8d695 fix: activate dev Spring profile in VS Code launch config
Without -Dspring.profiles.active=dev, launching from VS Code used the
prod defaults (Swagger disabled, no test data, no SQL logging).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-15 14:17:07 +01:00

16 lines
562 B
JSON

{
// 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": "Familienarchiv (dev)",
"request": "launch",
"mainClass": "org.raddatz.familienarchiv.FamilienarchivApplication",
"projectName": "familienarchiv",
"vmArgs": "-Dspring.profiles.active=dev"
}
]
}