mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-03-16 18:33:08 +00:00
- Create VISION.md establishing AutoForge as a Claude Agent SDK wrapper exclusively, rejecting integrations with other AI SDKs/CLIs/platforms - Update review-pr.md step 6 to make vision deviation a merge blocker (previously informational only) and auto-reject PRs modifying VISION.md - Add .claude/launch.json with backend (uvicorn) and frontend (Vite) dev server configurations Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
399 B
JSON
18 lines
399 B
JSON
{
|
|
"version": "0.0.1",
|
|
"configurations": [
|
|
{
|
|
"name": "backend",
|
|
"runtimeExecutable": "python",
|
|
"runtimeArgs": ["-m", "uvicorn", "server.main:app", "--host", "127.0.0.1", "--port", "8888", "--reload"],
|
|
"port": 8888
|
|
},
|
|
{
|
|
"name": "frontend",
|
|
"runtimeExecutable": "cmd",
|
|
"runtimeArgs": ["/c", "cd ui && npx vite"],
|
|
"port": 5173
|
|
}
|
|
]
|
|
}
|