This commit is contained in:
Bastian Wagner
2026-08-19 16:06:51 +02:00
parent f24a5fea9c
commit 85184e6e53
17 changed files with 4031 additions and 10 deletions

17
.claude/launch.json Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "0.0.1",
"configurations": [
{
"name": "api",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev:api"],
"port": 3000
},
{
"name": "web",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev:web"],
"port": 4200
}
]
}