Initial MUH app implementation

This commit is contained in:
2026-03-12 11:43:27 +01:00
commit fb8e3c8ef6
69 changed files with 8387 additions and 0 deletions

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

@@ -0,0 +1,47 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Backend: Spring Boot",
"request": "launch",
"mainClass": "de.svencarstensen.muh.MuhApplication",
"projectName": "muh-backend",
"cwd": "${workspaceFolder}/backend",
"console": "integratedTerminal"
},
{
"type": "node-terminal",
"name": "Frontend: Vite Dev Server",
"request": "launch",
"command": "npm run dev",
"cwd": "${workspaceFolder}/frontend"
},
{
"type": "pwa-chrome",
"name": "Frontend: Browser",
"request": "launch",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}/frontend/src"
}
],
"compounds": [
{
"name": "MUH App: Backend + Frontend",
"configurations": [
"Backend: Spring Boot",
"Frontend: Vite Dev Server"
],
"stopAll": true
},
{
"name": "MUH App: Komplett",
"configurations": [
"Backend: Spring Boot",
"Frontend: Vite Dev Server",
"Frontend: Browser"
],
"stopAll": true
}
]
}