feat: MVP v0.5 完成 - 全部14个P0功能
Some checks failed
CI / lint-and-typecheck (push) Failing after 31s
CI / test (push) Has been skipped
CI / build (push) Has been skipped

- P0-8: 决策交互卡片(飞书卡片+回调+4种模板)
- P0-10: 执行记录REST API(Hono框架+统计接口)
- P0-11: 创建流程串联(向导→章程→任务→看板→通知)
- P0-12: GitHub Actions CI/CD
- P0-14: Dockerfile + docker-compose部署
- 前端入口+Vite配置+项目结构完善
- CHANGELOG + PROGRESS更新
This commit is contained in:
2026-04-11 19:01:11 +08:00
parent 8df4ea3c30
commit 20d510d857
16 changed files with 878 additions and 44 deletions

18
vite.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
port: 3000,
proxy: {
'/api': 'http://localhost:3001',
},
},
});