chore: CLAUDE.md compliance — relative paths, CORS, README tech stack, .vch-description

- Fix absolute API paths in index.html (/analyze, /move, /preview → relative)
- Allow all CORS origins in server.py for reverse-proxy compatibility
- Add tech stack section to README.md
- Create .vch-description for VCH Showcase

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-13 14:13:43 +00:00
parent a90c542d9f
commit 9f44b8c4f2
4 changed files with 14 additions and 5 deletions

View File

@@ -19,7 +19,7 @@ app = FastAPI(title="Foto-Kurator")
app.add_middleware(
CORSMiddleware,
allow_origins=["http://localhost:8000"],
allow_origins=["*"],
allow_methods=["GET", "POST"],
allow_headers=["Content-Type"],
)