-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
103 lines (92 loc) · 2.98 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
# SPDX-FileCopyrightText: The PFDL Contributors
# SPDX-License-Identifier: CC0-1.0
site_name: Production Flow Description Language
site_url: https://example.com/
repo_name: iml130/pfdl
repo_url: https://github.com/iml130/pfdl
copyright: Copyright © The PFDL Contributors
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
nav:
- Home: index.md
- Getting Started:
- Installation: getting_started/installation.md
- Architecture: getting_started/architecture.md
- CI/CD: getting_started/ci_cd.md
- Glossary: getting_started/glossary.md
- PFDL:
- Introduction: pfdl/introduction.md
- Struct: pfdl/struct.md
- Task: pfdl/task.md
- Service: pfdl/service.md
- Parallel: pfdl/parallel.md
- Condition: pfdl/condition.md
- Loop: pfdl/loop.md
- Comments: pfdl/comments.md
- Scheduler Reference:
- Introduction: scheduler/index.md
- Scheduler:
- Scheduler Class: scheduler/scheduler_class.md
- Scheduler API: scheduler/api.md
- Model classes: scheduler/model_classes.md
- Dashboard API: scheduler/dashboard.md
- Developer Reference: scheduler/developer_reference.md
- Examples:
- Introduction: examples/introduction.md
- Task input and output: examples/task_input_and_output.md
- Concurrency and Synchronization: examples/concurrency_and_synchronization.md
- Control Structures: examples/control_structures.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/iml130/pfdl
name: PFDL on Github
extra_css:
- stylesheets/extra.css
theme:
name: material
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
logo: img/pfdl_favicon.png
favicon: img/pfdl_favicon.png
features:
- content.code.annotate
- content.tooltips
- navigation.instant
- navigation.tabs
- navigation.top # back to top button visible
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
#- toc.integrate # integrate toc from the left to navigation in the right
font: false
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
plugins:
- search
- swagger-ui-tag
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
options:
merge_init_into_class: True
show_source: False
show_root_heading: True