Files
lcbp3/run-codebase-dashboards.bat
T
admin 67da186672
CI / CD Pipeline / build (push) Failing after 3m23s
CI / CD Pipeline / deploy (push) Has been skipped
feat(ai): implement unified prompt management UX/UI (ADR-037)
- Add context config endpoints (GET/PUT /api/ai/prompts/:type/:version/context-config)
- Add execution profile endpoints (CRUD /api/ai/execution-profiles)
- Add sandbox RAG Prep endpoint (POST /api/ai/admin/sandbox/rag-prep)
- Create Prompt Management UI with multi-type support
- Add ContextConfigEditor, PromptEditor, RuntimeParametersPanel components
- Add SandboxTabs for 3-step workflow (OCR, Extract, RAG Prep)
- Add database deltas for ai_execution_profiles and additional prompt types
- Update quickstart.md with production backend URLs
- Add comprehensive test coverage for new features
2026-06-14 19:55:43 +07:00

24 lines
1.6 KiB
Batchfile

@echo off
REM File: e:/np-dms/lcbp3/run-codebase-dashboards.bat
REM Change Log:
REM - 2026-06-13: สร้างสคริปต์สำหรับเปิดแดชบอร์ดแผนที่โค้ด (Codebase Map) แยกหน้าต่างอัตโนมัติ
echo ==========================================================
echo Starting Codebase Map Dashboards (Understand)
echo ==========================================================
echo.
echo [1/2] กำลังเปิดแดชบอร์ดฝั่ง Backend (พอร์ต 5173)...
start "Backend Map Dashboard" cmd /c "set GRAPH_DIR=e:\np-dms\lcbp3\backend\src && cd /d C:\Users\peanc\.understand-anything\repo\understand-anything-plugin\packages\dashboard && npx vite --host 127.0.0.1 --port 5173"
echo [2/2] กำลังเปิดแดชบอร์ดฝั่ง Frontend (พอร์ต 5174)...
start "Frontend Map Dashboard" cmd /c "set GRAPH_DIR=e:\np-dms\lcbp3\frontend && cd /d C:\Users\peanc\.understand-anything\repo\understand-anything-plugin\packages\dashboard && npx vite --host 127.0.0.1 --port 5174"
echo.
echo ----------------------------------------------------------
echo แดชบอร์ดทั้งสองฝั่งกำลังเปิดทำงานในหน้าต่าง cmd แยกต่างหาก
echo กรุณาตรวจสอบ Token จากแต่ละหน้าต่างเพื่อเข้าใช้งานผ่านเว็บเบราว์เซอร์
echo ----------------------------------------------------------
echo.
pause