-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
162 lines (151 loc) · 4.65 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
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
site_name: lakeFS-spec
site_dir: public/docs
site_url: https://lakefs-spec.org
repo_url: https://github.com/aai-institute/lakefs-spec
edit_uri: edit/main/docs/
# lakeFS occupies port 8000, which is the default for `mkdocs serve`
dev_addr: 127.0.0.1:8001
# To validate all internal links exist. Does not work in ipynb files
strict: true
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
copyright: Copyright © 2023 <a href="https://appliedai-institute.de" target="_blank" rel="noopener">appliedAI Institute for Europe gGmbH</a><br>The appliedAI Institute for Europe gGmbH is supported by the KI-Stiftung Heilbronn gGmbH.
nav:
- Home: index.md
- quickstart.md
- User Guide:
- guides/index.md
- guides/filesystem-usage.md
- guides/configuration.md
- guides/transactions.md
- guides/integrations.md
- Tutorials:
- tutorials/index.md
- Data Science with lakeFS-spec: tutorials/demo_data_science_project.ipynb
- API Reference: reference/
- Contributing: CONTRIBUTING.md
# Rebuild docs in `mkdocs serve` for changes in source code
watch:
- src/
plugins:
- callouts
- gen-files:
scripts:
- docs/_scripts/gen_api_ref_pages.py
- docs/_scripts/jupytext_convert.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
paths: [src]
options:
docstring_style: numpy
docstring_section_style: spacy
line_length: 100
show_bases: true
members_order: source
separate_signature: true
show_signature_annotations: true
signature_crossrefs: true
merge_init_into_class: false
filters: ["!^_{1,2}"]
- mknotebooks:
execute: true
# https://github.com/greenape/mknotebooks/blob/master/examples/cell_tag_remove/mkdocs.yml
# See the following for how to add the tags to cells: https://jupyterbook.org/en/stable/content/metadata.html#jupyter-cell-tags
tag_remove_configs:
remove_cell_tags:
- Remove_cell
remove_all_outputs_tags:
- Remove_all_output
remove_single_output_tags:
- Remove_single_output
remove_input_tags:
- Remove_input
- mike:
canonical_version: latest
- privacy
- search:
- git-revision-date-localized:
type: iso_date
strict: false
fallback_to_build_date: true
- include_dir_to_nav:
file_pattern: '.*\.(md|ipynb)$'
markdown_extensions:
- neoteroi.cards # https://www.neoteroi.dev/mkdocs-plugins/cards/
# python-markdown extensions: https://python-markdown.github.io/extensions/
- admonition
- attr_list
- sane_lists
- toc:
permalink: true
toc_depth: 3
# pymdown-extensions: https://facelessuser.github.io/pymdown-extensions/
- 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.snippets:
url_download: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
theme:
name: "material"
custom_dir: docs/_theme_overrides
logo: _images/aai-logo-cropped.png
favicon: _images/lakefs-spec-favicon.png
font:
text: IBM Plex Sans # Arial replacement
code: Source Code Pro
icon:
logo: _images/aai-favicon.png
repo: fontawesome/brands/github
features:
- content.tabs.link
- content.code.copy
- content.code.annotate
- content.action.edit
palette:
# Palette toggle for light mode
- scheme: aai-light
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
extra:
copyright_link: https://appliedai-institute.de
homepage: https://lakefs-spec.org
generator: false
pre_release: !ENV [DOCS_PRERELEASE, false]
version:
provider: mike
default: latest
social:
- icon: fontawesome/brands/github
link: https://github.com/aai-institute/lakefs-spec
- icon: fontawesome/brands/python
link: https://pypi.org/project/lakefs-spec
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/appliedai-institute-for-europe-ggmbh/
- icon: fontawesome/solid/section
link: https://appliedai-institute.de/impressum
name: Impressum / Imprint
extra_css:
- _styles/extra.css
- _styles/theme.css
- _styles/neoteroi-mkdocs.css