Tauri 2 + Vue 3 + Vite 6 桌面应用,Rust workspace 含 13 个 crate (df-ai / df-storage / df-workflow / df-core / df-execute 等)。 核心能力:AI 聊天 agentic 循环(工具调用+人工审批)、工作流引擎、 任务/想法/项目/阶段管理、可追溯性,及配套前端组件。
25 lines
910 B
HTML
25 lines
910 B
HTML
<!doctype html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>DevFlow</title>
|
||
</head>
|
||
<body style="background:#0c0e1a">
|
||
<script>
|
||
// 启动计时基准:webview 解析 index.html 的时刻
|
||
window.__APP_T0 = performance.now();
|
||
</script>
|
||
<script>
|
||
// 在渲染前设置主题,防止白屏闪烁
|
||
var t = localStorage.getItem('df-theme') || 'dark';
|
||
if (t === 'light') document.documentElement.setAttribute('data-theme', 'light');
|
||
else if (t === 'system' && !window.matchMedia('(prefers-color-scheme: dark)').matches)
|
||
document.documentElement.setAttribute('data-theme', 'light');
|
||
</script>
|
||
<div id="app"></div>
|
||
<script type="module" src="/src/main.ts"></script>
|
||
</body>
|
||
</html>
|