|
| 1 | +import { defineConfig } from 'vitepress'; |
| 2 | + |
| 3 | +export default defineConfig({ |
| 4 | + lang: 'en-US', |
| 5 | + title: 'Agentwerke', |
| 6 | + description: 'User manual for governed AI software delivery with Agentwerke.', |
| 7 | + base: '/', |
| 8 | + lastUpdated: true, |
| 9 | + themeConfig: { |
| 10 | + logo: '/agentwerke-run-map.svg', |
| 11 | + siteTitle: 'Agentwerke Docs', |
| 12 | + search: { |
| 13 | + provider: 'local', |
| 14 | + }, |
| 15 | + nav: [ |
| 16 | + { text: 'Start', link: '/start/quickstart' }, |
| 17 | + { text: 'Manual', link: '/manual/runs' }, |
| 18 | + { text: 'Admin', link: '/admin/deployment' }, |
| 19 | + { text: 'Developer', link: '/developer/local-development' }, |
| 20 | + { text: 'Reference', link: '/reference/bpmn-extensions' }, |
| 21 | + ], |
| 22 | + sidebar: [ |
| 23 | + { |
| 24 | + text: 'Start Here', |
| 25 | + items: [ |
| 26 | + { text: 'What Agentwerke Is', link: '/start/what-is-agentwerke' }, |
| 27 | + { text: 'Quickstart', link: '/start/quickstart' }, |
| 28 | + { text: 'Core Concepts', link: '/start/core-concepts' }, |
| 29 | + ], |
| 30 | + }, |
| 31 | + { |
| 32 | + text: 'User Manual', |
| 33 | + items: [ |
| 34 | + { text: 'Runs', link: '/manual/runs' }, |
| 35 | + { text: 'Approvals And Evidence', link: '/manual/approvals-evidence' }, |
| 36 | + { text: 'Model Providers', link: '/manual/model-providers' }, |
| 37 | + { text: 'GitHub Issue Trigger', link: '/manual/github-issue-trigger' }, |
| 38 | + { text: 'Workflow Authoring', link: '/manual/workflow-authoring' }, |
| 39 | + { text: 'Agents And Skills', link: '/manual/agents-skills' }, |
| 40 | + ], |
| 41 | + }, |
| 42 | + { |
| 43 | + text: 'Administrator Guide', |
| 44 | + items: [ |
| 45 | + { text: 'Deployment', link: '/admin/deployment' }, |
| 46 | + { text: 'Settings And Secrets', link: '/admin/settings-secrets' }, |
| 47 | + { text: 'Auth And Data Residency', link: '/admin/auth-data-residency' }, |
| 48 | + { text: 'Sandboxes And Storage', link: '/admin/sandboxes-storage' }, |
| 49 | + ], |
| 50 | + }, |
| 51 | + { |
| 52 | + text: 'Developer Guide', |
| 53 | + items: [ |
| 54 | + { text: 'Local Development', link: '/developer/local-development' }, |
| 55 | + { text: 'Architecture', link: '/developer/architecture' }, |
| 56 | + { text: 'API Overview', link: '/developer/api-overview' }, |
| 57 | + { text: 'Extending Agentwerke', link: '/developer/extending-agentwerke' }, |
| 58 | + ], |
| 59 | + }, |
| 60 | + { |
| 61 | + text: 'Reference', |
| 62 | + items: [ |
| 63 | + { text: 'BPMN Extensions', link: '/reference/bpmn-extensions' }, |
| 64 | + { text: 'Security Model', link: '/reference/security-model' }, |
| 65 | + { text: 'Persistence Schema', link: '/reference/persistence-schema' }, |
| 66 | + { text: 'Open Core Boundary', link: '/reference/open-core' }, |
| 67 | + { text: 'Architecture Decisions', link: '/reference/architecture-decisions' }, |
| 68 | + { text: 'Docs Site Deployment', link: '/reference/docs-site-deployment' }, |
| 69 | + ], |
| 70 | + }, |
| 71 | + ], |
| 72 | + outline: { |
| 73 | + level: [2, 3], |
| 74 | + }, |
| 75 | + editLink: { |
| 76 | + pattern: 'https://github.com/isartor-ai/agentwerke/edit/main/docs.agentwerke.de/:path', |
| 77 | + text: 'Edit this page on GitHub', |
| 78 | + }, |
| 79 | + socialLinks: [ |
| 80 | + { icon: 'github', link: 'https://github.com/isartor-ai/agentwerke' }, |
| 81 | + ], |
| 82 | + footer: { |
| 83 | + message: 'Apache-2.0 open core. Enterprise-only capabilities are labeled in context.', |
| 84 | + copyright: 'Copyright 2026 Isartor AI', |
| 85 | + }, |
| 86 | + }, |
| 87 | +}); |
0 commit comments