-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmkdocs.yml
130 lines (129 loc) · 4.44 KB
/
mkdocs.yml
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
site_name: Arcalot
site_url: https://arcalot.io/
repo_url: https://github.com/arcalot/arcaflow-engine
repo_name: arcalot/arcaflow-engine
edit_uri: edit/main/docs/
nav:
- Home: index.md
- Arcaflow:
- 'arcaflow/index.md'
- Getting Started: arcaflow/getting-started.md
- Concepts:
- arcaflow/concepts/index.md
- Overview: arcaflow/concepts/index.md
- Architecture: arcaflow/concepts/architecture.md
- Typing: arcaflow/concepts/typing.md
- Plugins: arcaflow/concepts/plugins.md
- Workflows: arcaflow/concepts/workflows.md
- Running Arcaflow:
- arcaflow/running/index.md
- Overview: arcaflow/running/index.md
- Setting up Arcaflow: arcaflow/running/setup.md
- Running a workflow: arcaflow/running/running.md
- Creating plugins:
- arcaflow/plugins/index.md
- Overview: arcaflow/plugins/index.md
- Python:
- arcaflow/plugins/python/index.md
- Overview: arcaflow/plugins/python/index.md
- Your first plugin: arcaflow/plugins/python/first.md
- Creating the plugin schema: arcaflow/plugins/python/data-model.md
- Embedding your plugin: arcaflow/plugins/python/embedding.md
- Testing your plugin: arcaflow/plugins/python/testing.md
- Frequently asked questions: arcaflow/plugins/python/faq.md
- Creating a schema by hand: arcaflow/plugins/python/schema.md
- Contributing official plugins: arcaflow/plugins/python/official.md
- Go:
- arcaflow/plugins/go/index.md
- Overview: arcaflow/plugins/go/index.md
- Your first plugin: arcaflow/plugins/go/first.md
- Creating a schema: arcaflow/plugins/go/schema.md
- Packaging plugins: arcaflow/plugins/packaging.md
- Writing workflows:
- arcaflow/workflows/index.md
- Overview: arcaflow/workflows/index.md
- Versioning: arcaflow/workflows/versioning.md
- Workflow schemas: arcaflow/workflows/schemas.md
- Creating your input schema: arcaflow/workflows/input.md
- Setting up a step: arcaflow/workflows/step.md
- Expressions: arcaflow/workflows/expressions.md
- Flow Control: arcaflow/workflows/flow-control.md
- Outputs: arcaflow/workflows/output.md
- Contributing:
- arcaflow/contributing/index.md
- Overview: arcaflow/contributing/index.md
- Typing system: arcaflow/contributing/typing.md
- Arcaflow Transport Protocol: arcaflow/contributing/plugin-protocol.md
- Expression language: arcaflow/contributing/expressions.md
- Deployers: arcaflow/contributing/deployers.md
- Engine: arcaflow/contributing/engine.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/arcalot
plugins:
- search
- redirects:
redirect_maps:
"arcaflow/creating-plugins/index.md": "arcaflow/plugins/index.md"
"arcaflow/creating-plugins/python.md": "arcaflow/plugins/python/index.md"
theme:
name: material
logo: arcalot.svg
favicon: arcalot.svg
font: false
palette:
- scheme: default
media: "(prefers-color-scheme: light)"
primary: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: indigo
accent: blue
toggle:
icon: material/toggle-switch
name: Switch to light mode
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.indexes
- toc.integrate
- search.suggest
- search.highlight
- search.share
- content.code.copy
extra_css:
- extra.css
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- mdx_include
# - markdown_include.include:
# base_path: .
- markdown.extensions.smarty:
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.keys
- pymdownx.smartsymbols
- pymdownx.tabbed:
alternate_style: true