festifun/.claude/launch.json
m3ultra db42c42932 Chore: lock python-multipart (declared but never locked), launch configs
uv.lock drifted from pyproject when live capture added python-multipart;
uv run resynced it. launch.json gains festifun-web-dist (uv + http.server
over frontend/dist) for sandboxed sessions where node/npm can't start.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-17 17:02:48 +10:00

46 lines
834 B
JSON

{
"version": "0.0.1",
"configurations": [
{
"name": "festifun-api",
"runtimeExecutable": "uv",
"runtimeArgs": [
"run",
"python",
"-m",
"festival4d",
"serve"
],
"port": 8000,
"autoPort": false
},
{
"name": "festifun-web",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"dev",
"--prefix",
"frontend"
],
"port": 5173,
"autoPort": false
},
{
"name": "festifun-web-dist",
"runtimeExecutable": "uv",
"runtimeArgs": [
"run",
"python",
"-m",
"http.server",
"5174",
"--directory",
"/Users/m3ultra/Documents/festifun/frontend/dist"
],
"port": 5174,
"autoPort": false
}
]
}