mirror of
https://github.com/andrewyng/openworker.git
synced 2026-09-04 07:20:10 +00:00
launch.json defines the gui (vite :1420) and server (sidecar :8765) dev-server entries any session needs; settings.local.json is this machine's personal permission allowlist and stays untracked.
18 lines
380 B
JSON
18 lines
380 B
JSON
{
|
|
"version": "0.0.1",
|
|
"configurations": [
|
|
{
|
|
"name": "gui",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "dev", "--prefix", "surfaces/gui"],
|
|
"port": 1420
|
|
},
|
|
{
|
|
"name": "server",
|
|
"runtimeExecutable": ".venv/Scripts/python.exe",
|
|
"runtimeArgs": ["-m", "coworker.server.run", "--cwd", "."],
|
|
"port": 8765
|
|
}
|
|
]
|
|
}
|