mirror of
https://github.com/andrewyng/openworker.git
synced 2026-08-30 22:53:41 +00:00
Track .claude/launch.json (dev server config); ignore local permission settings
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.
This commit is contained in:
parent
20cc749198
commit
10f0ab1ebd
17
.claude/launch.json
Normal file
17
.claude/launch.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"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
|
||||
}
|
||||
]
|
||||
}
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@ -9,3 +9,4 @@ dist/
|
||||
|
||||
# Local secrets (live-smoke BYO keys) — never committed
|
||||
.env
|
||||
.claude/settings.local.json
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user