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>
46 lines
834 B
JSON
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
|
|
}
|
|
]
|
|
}
|