-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
109 lines (103 loc) · 3.22 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
# mkdocs.yml
site_name: Digitalhub SDK documentation
extra:
site: https://scc-digitalhub.github.io/sdk-docs
docs_version: !ENV [DOCS_VERSION, "current"]
versions: !ENV [VERSIONS]
extra_css:
- !ENV [USER_STYLESHEETS_PORTAL_SELECTION, "stylesheets/portal_selection.css"]
- !ENV [USER_STYLESHEETS_COLORS, "stylesheets/colors.css"]
theme:
name: "material"
custom_dir: custom/
palette:
# Palette toggle for light mode
- scheme: orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.copy
- content.code.select
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- md_in_html
plugins:
- search:
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: numpy
show_root_toc_entry: false
show_labels: false
nav:
- Index: index.md
- Quickstart: quickstart.md
- Installation: install.md
- Entities:
- Entities: objects/entities.md
- Projects:
- Entity: objects/project/entity.md
- CRUD: objects/project/crud.md
- Methods: objects/project/methods.md
- Config: objects/project/config.md
- Setup: objects/project/setup.md
- Functions:
- Entity: objects/function/entity.md
- CRUD: objects/function/crud.md
- Methods: objects/function/methods.md
- Kinds: objects/function/kinds.md
- Workflows:
- Entity: objects/workflow/entity.md
- CRUD: objects/workflow/crud.md
- Methods: objects/workflow/methods.md
- Kinds: objects/workflow/kinds.md
- Runs:
- Entity: objects/run/entity.md
- CRUD: objects/run/crud.md
- Methods: objects/run/methods.md
- Kinds: objects/run/kinds.md
- Artifacts:
- Entity: objects/artifact/entity.md
- CRUD: objects/artifact/crud.md
- Methods: objects/artifact/methods.md
- Kinds: objects/artifact/kinds.md
- Dataitems:
- Entity: objects/dataitem/entity.md
- CRUD: objects/dataitem/crud.md
- Methods: objects/dataitem/methods.md
- Kinds: objects/dataitem/kinds.md
- Models:
- Entity: objects/model/entity.md
- CRUD: objects/model/crud.md
- Methods: objects/model/methods.md
- Kinds: objects/model/kinds.md
- Secrets:
- Entity: objects/secret/entity.md
- CRUD: objects/secret/crud.md
- Methods: objects/secret/methods.md
- Stores: objects/stores.md
- Code source: objects/code_source.md
- Runtimes:
- Runtimes: runtimes/runtimes.md
- Python: runtimes/python.md
- DBT: runtimes/dbt.md
- Container: runtimes/container.md
- KFP: runtimes/kfp.md
- Modelserve: runtimes/modelserve.md
- Kubernetes resources: runtimes/kubernetes-resources.md