-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
146 lines (141 loc) · 4.5 KB
/
mkdocs.yml
File metadata and controls
146 lines (141 loc) · 4.5 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
site_name: wf — Infrastructure Automation Runtime
site_description: A single binary that executes operational workflows defined in TOML, stores state in local SQLite, and provides stateful resume from any failure. Built for air-gapped, edge, and critical infrastructure environments.
site_url: https://silocorp.github.io/workflow
repo_url: https://github.com/silocorp/workflow
repo_name: silocorp/workflow
edit_uri: edit/master/docs/
theme:
name: material
logo: assets/logo.svg
favicon: assets/logo.svg
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.top
- navigation.indexes
- toc.follow
- search.highlight
- search.share
- search.suggest
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.tooltips
plugins:
- search:
lang: en
- minify:
minify_html: true
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- attr_list
- md_in_html
- tables
- footnotes
- toc:
permalink: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/silocorp/workflow
version:
provider: mike
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- Quick Start: getting-started/quick-start.md
- Configuration: getting-started/configuration.md
- Concepts:
- concepts/index.md
- DAG Execution Model: concepts/dag.md
- Execution Modes: concepts/execution-modes.md
- Variables & Interpolation: concepts/variables.md
- Matrix Expansion: concepts/matrix.md
- Forensic Tasks & Failure Handling: concepts/forensic-tasks.md
- Resume: concepts/resume.md
- Triggers (Roadmap): concepts/triggers.md
- Workflow Reference:
- reference/workflow-file.md
- CLI Reference:
- reference/cli/index.md
- wf init: reference/cli/init.md
- wf run: reference/cli/run.md
- wf resume: reference/cli/resume.md
- wf validate: reference/cli/validate.md
- wf list: reference/cli/list.md
- wf runs: reference/cli/runs.md
- wf logs: reference/cli/logs.md
- wf graph: reference/cli/graph.md
- wf inspect: reference/cli/inspect.md
- wf status: reference/cli/status.md
- wf audit: reference/cli/audit.md
- wf diff: reference/cli/diff.md
- wf export: reference/cli/export.md
- wf health: reference/cli/health.md
- Guides:
- guides/index.md
- Your First Workflow: guides/first-workflow.md
- Parallel Execution: guides/parallel-execution.md
- Error Handling & Retries: guides/error-handling.md
- The Saga Pattern: guides/saga-pattern.md
- Examples:
- examples/index.md
- CI/CD Pipeline: examples/cicd-pipeline.md
- Data ETL: examples/data-etl.md
- Database Backup: examples/database-backup.md
- ML Training Pipeline: examples/ml-training.md
- Infrastructure Provisioning: examples/infra-provisioning.md
- Security Audit: examples/security-audit.md
- Release Management: examples/release-management.md
- Log Analysis: examples/log-analysis.md
- Order Processing (Saga): examples/order-processing.md
- System Maintenance: examples/system-maintenance.md
- Compliance Audit: examples/compliance-audit.md
- Cost Modeling: examples/cost-modeling.md
- Security:
- security/index.md
- Security Model: security/model.md
- Hardening Guide: security/hardening.md
- Architecture:
- architecture/index.md
- Overview: architecture/overview.md
- Changelog: changelog.md