-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml.example
More file actions
169 lines (151 loc) · 5.03 KB
/
mkdocs.yml.example
File metadata and controls
169 lines (151 loc) · 5.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# Material MkDocs Configuration Example for Prodigy
site_name: Prodigy Documentation
site_description: AI-powered workflow orchestration for development teams
site_author: Glen Baker
site_url: https://prodigy.dev # Update with your actual URL
# Repository
repo_name: iepathos/prodigy
repo_url: https://github.com/iepathos/prodigy
edit_uri: edit/main/docs/
# Copyright
copyright: Copyright © 2024 Glen Baker
# Theme Configuration
theme:
name: material
palette:
# Palette toggle for light mode
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs # Top-level navigation tabs
- navigation.sections # Section navigation
- navigation.expand # Expand navigation by default
- navigation.top # Back to top button
- navigation.tracking # Track navigation in URL
- navigation.indexes # Allow index pages for sections
- search.suggest # Search suggestions
- search.highlight # Highlight search results
- search.share # Share search results
- content.code.copy # Copy button for code blocks
- content.code.annotate # Annotations in code blocks
- content.tabs.link # Link content tabs
icon:
repo: fontawesome/brands/github
# Plugins
plugins:
- search:
lang: en
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
- tags:
tags_file: reference/tags.md
# Extensions
markdown_extensions:
# Python Markdown
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
toc_depth: 3
# PyMdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Navigation Structure
# This will be auto-managed by /prodigy-detect-mkdocs-gaps
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quick-start.md
- First Workflow: getting-started/first-workflow.md
- Workflow Basics:
- workflow-basics/index.md
- Workflow Structure: workflow-basics/workflow-structure.md
- Command Types: workflow-basics/command-types.md
- Variables: workflow-basics/variables.md
- Environment Configuration: workflow-basics/environment.md
- MapReduce Workflows:
- mapreduce/index.md
- Overview: mapreduce/overview.md
- Setup Phase: mapreduce/setup-phase.md
- Map Phase: mapreduce/map-phase.md
- Reduce Phase: mapreduce/reduce-phase.md
- Checkpoint & Resume: mapreduce/checkpoint-resume.md
- Dead Letter Queue: mapreduce/dlq.md
- Event Tracking: mapreduce/event-tracking.md
- Advanced Features:
- advanced/index.md
- Goal-Seeking Operations: advanced/goal-seeking.md
- Implementation Validation: advanced/validation.md
- Parallel Iteration: advanced/foreach.md
- Timeout Configuration: advanced/timeouts.md
- Configuration:
- configuration/index.md
- Global Configuration: configuration/global-config.md
- Project Configuration: configuration/project-config.md
- Storage Configuration: configuration/storage.md
- Environment Variables: configuration/environment-variables.md
- Error Handling:
- error-handling/index.md
- Error Policies: error-handling/policies.md
- Retry Configuration: error-handling/retry.md
- Circuit Breaker: error-handling/circuit-breaker.md
- Backoff Strategies: error-handling/backoff.md
- Reference:
- Examples: reference/examples.md
- Troubleshooting: reference/troubleshooting.md
- FAQ: reference/faq.md
- API Reference: reference/api.md
# Extra
extra:
version:
provider: mike # For versioned documentation
social:
- icon: fontawesome/brands/github
link: https://github.com/iepathos/prodigy
- icon: fontawesome/brands/twitter
link: https://twitter.com/yourusername # Update with your Twitter
analytics:
provider: google
property: G-XXXXXXXXXX # Update with your Google Analytics ID