festifun/.claude/launch.json
type-two 52674bbaf1 CR-6 ratified at merge (coordinator); launch.json: alt-port web config
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-17 21:38:16 +10:00

62 lines
1.1 KiB
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-alt",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"dev",
"--prefix",
"frontend",
"--",
"--port",
"5177",
"--strictPort"
],
"port": 5177,
"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
}
]
}