Files
tianpu-ems/.claude/launch.json

20 lines
393 B
JSON
Raw Normal View History

{
"version": "0.0.1",
"configurations": [
{
"name": "frontend",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"port": 3000,
"cwd": "frontend"
},
{
"name": "backend",
"runtimeExecutable": "uvicorn",
"runtimeArgs": ["app.main:app", "--reload", "--port", "8000"],
"port": 8000,
"cwd": "backend"
}
]
}