feat(studio): 新增 Studio 工作流编辑/运行页,优化顶部三栏对齐

- 后端:项目/运行 API、上下文服务与数据模型
- 前端:Studio 列表、编辑页(R1/R2 布局)、运行页与节点图
- 编辑页顶部:CSS Grid 统一标签行与控件行对齐,项目按钮独立第三行
- Docker 开发配置与文档脚本

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-31 21:24:57 +08:00
parent bc130d98f4
commit fa6907fb8d
48 changed files with 8795 additions and 20 deletions

View File

@@ -36,10 +36,11 @@ services:
- "23338:5173"
volumes:
- ./frontend:/app
- /app/node_modules
- node_modules:/app/node_modules
environment:
- NODE_ENV=development
command: sh -c "npm install && npm run dev -- --host 0.0.0.0"
# 依赖在镜像构建时写入 node_modules volumepackage.json 变更见 docs/DOCKER_DEV.md
command: npm run dev -- --host 0.0.0.0
depends_on:
backend:
condition: service_healthy