Files
swyx/.vscode/launch.json
Sven Carstensen ef4fa38244 Flutter-App mit WebView, STOMP-Client und Konfigurationssystem
- Flutter-App (app/) für iOS, Android, macOS, Windows und Linux erstellt
- WebView-Startseite mit flutter_inappwebview (iOS/Android/macOS/Windows),
  Linux-Fallback mit url_launcher
- STOMP-over-WebSocket: Topic-basierte Echtzeit-Kommunikation zwischen
  Flutter-App und Spring Boot Core
- Core: STOMP-Broker (/ws/stomp), CallEventBroadcaster auf /topic/calls,
  StompMessageController für /app/ping und /app/broadcast
- SecurityConfig: /ws/** permitAll + CSRF-Ausnahme
- Asset-basierte Konfigurationsdatei (app_config.json) für Server-URL,
  STOMP-Reconnect, Topics und WebView-URL
- launch.json um Flutter-Debug/Profile/Release-Konfigurationen erweitert
- macOS: FLTEnableMergedPlatformUIThread deaktiviert (WKWebView-Kompatibilität),
  network.client Entitlement gesetzt
- iOS: NSAllowsLocalNetworking für lokale Entwicklung
- Android: INTERNET-Permission und usesCleartextTraffic

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-20 10:32:14 +02:00

58 lines
1.9 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Spring Boot: Swyx Core",
"request": "launch",
"cwd": "${workspaceFolder}/core",
"mainClass": "de.assecutor.swyx.SwyxCoreApplication",
"projectName": "swyx-core",
"args": [],
"vmArgs": "-Dspring.profiles.active=dev -Dspring.devtools.restart.enabled=true",
"env": {
"SERVER_PORT": "8080"
},
"console": "internalConsole"
},
{
"type": "java",
"name": "Spring Boot: Swyx Core (Production)",
"request": "launch",
"cwd": "${workspaceFolder}/core",
"mainClass": "de.assecutor.swyx.SwyxCoreApplication",
"projectName": "swyx-core",
"args": [],
"vmArgs": "-Dspring.profiles.active=prod -Dvaadin.productionMode=true",
"env": {
"SERVER_PORT": "8080"
},
"console": "internalConsole"
},
{
"type": "dart",
"name": "Flutter: Swyx App (Debug)",
"request": "launch",
"program": "${workspaceFolder}/app/lib/main.dart",
"cwd": "${workspaceFolder}/app",
"flutterMode": "debug"
},
{
"type": "dart",
"name": "Flutter: Swyx App (Profile)",
"request": "launch",
"program": "${workspaceFolder}/app/lib/main.dart",
"cwd": "${workspaceFolder}/app",
"flutterMode": "profile"
},
{
"type": "dart",
"name": "Flutter: Swyx App (Release)",
"request": "launch",
"program": "${workspaceFolder}/app/lib/main.dart",
"cwd": "${workspaceFolder}/app",
"flutterMode": "release"
}
]
}