Backend: - Replace on-the-fly Ollama calls with versioned feature store (task_features, task_edges) - Background Tokio worker drains pending rows; write path returns immediately - MLConfig versioning: changing model IDs triggers automatic backfill via next_stale() - AppState with FromRef; new GET /api/ml/status observability endpoint - Idempotent mark_pending (content hash guards), retry failed rows after 30s - Remove tracked build artifacts (backend/target/, frontend/.next/, node_modules/) Frontend: - TaskItem: items-center alignment (fixes checkbox/text offset), break-words for overflow - TaskDetailPanel: fix invisible AI context (text-gray-700→text-gray-400), show all fields - TaskDetailPanel: pending placeholder when latent_desc not yet computed, show task ID - GraphView: surface pending_count as amber pulsing "analyzing N tasks…" hint in legend - Fix Task.created_at type (number/Unix seconds, not string) - Auth gate: LoginPage + sessionStorage; fix e2e tests to bypass gate in jsdom - Fix deleteTask test assertion and '1 remaining'→'1 left' stale text Docs: - VitePress docs in docs/ with guide, MLOps pipeline, and API reference Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { defineConfig } from 'vitepress'
|
|
|
|
export default defineConfig({
|
|
title: 'Taskpile',
|
|
description: 'Task manager with force-directed graph visualization and MLOps feature store',
|
|
themeConfig: {
|
|
logo: '/logo.svg',
|
|
nav: [
|
|
{ text: 'Guide', link: '/guide/getting-started' },
|
|
{ text: 'MLOps', link: '/mlops/overview' },
|
|
{ text: 'API', link: '/api/reference' },
|
|
],
|
|
sidebar: [
|
|
{
|
|
text: 'Guide',
|
|
items: [
|
|
{ text: 'Getting Started', link: '/guide/getting-started' },
|
|
{ text: 'Architecture', link: '/guide/architecture' },
|
|
],
|
|
},
|
|
{
|
|
text: 'MLOps Pipeline',
|
|
items: [
|
|
{ text: 'Overview', link: '/mlops/overview' },
|
|
{ text: 'Feature Pipeline', link: '/mlops/pipeline' },
|
|
],
|
|
},
|
|
{
|
|
text: 'API Reference',
|
|
link: '/api/reference',
|
|
},
|
|
],
|
|
socialLinks: [
|
|
{ icon: 'github', link: 'https://git.alogins.net/alvis/taskpile' },
|
|
],
|
|
footer: {
|
|
message: 'Built with VitePress',
|
|
},
|
|
search: {
|
|
provider: 'local',
|
|
},
|
|
},
|
|
})
|