-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
182 lines (170 loc) · 5.61 KB
/
Copy pathmkdocs.yml
File metadata and controls
182 lines (170 loc) · 5.61 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
site_name: Lomas
site_description: Data Oases Hidden Behind the Mist
site_url: https://dscc-admin-ch.github.io/lomas-docs
theme:
logo: images/logo.png
favicon: images/favicon.svg
palette:
primary: teal
name: material
features:
- announce.dismiss
- content.tabs.link
- content.code.annotate
- content.code.copy
- content.tooltips
- content.footnote.tooltips
- navigation.tabs
- navigation.tabs.sticky
- navigation.instant.preview
- navigation.path
- navigation.sections
- navigation.top
- navigation.indexes
- navigation.footer
- navigation.prune
- search.highlight
- search.suggest
- toc.follow
repo_name: dscc-admin-ch/lomas
repo_url: https://github.com/dscc-admin-ch/lomas
extra:
version:
provider: mike
# https://www.mkdocs.org/user-guide/configuration/#validation
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn
extra_javascript:
- https://cdn.jsdelivr.net/npm/mermaid@11.5.0/dist/mermaid.min.js
nav:
- Overview:
- Welcome to Lomas: index.md
# - Why use Lomas: why.md
# - Installation: install.md
# - Contributing: contributing.md
# - Changelog: changelog.md
- Client:
- Quickstart: client/quickstart.md
- Available DP libraries:
- client/opendp.md
- client/smartnoise-sql.md
- client/diffprivlib.md
- Examples:
- client/index.md
- notebooks/Demo_Client_Notebook.ipynb
- notebooks/Demo_Client_Notebook_Smartnoise-SQL.ipynb
- notebooks/Demo_Client_Notebook_DiffPrivLib.ipynb
- notebooks/Demo_Client_Notebook_OpenDP_Polars.ipynb
- Server:
- Deployment:
- server/deployment/index.md
- Local Devenv: server/deployment/devenv.md
- Onyxia: server/deployment/onyxia.md
- Kubernetes: server/deployment/kubernetes.md
- Administration:
- server/administration/index.md
- Users: server/administration/users.md
- Datasets: server/administration/datasets.md
- Concepts:
- Architecture Overview: concepts/architecture-overview.md
- Contributing: concepts/contributing.md
- Authentication and Authorization: concepts/auth.md
- Observability: concepts/observability.md
- Errors: concepts/errors.md
- DP Packages and Dataset Connectors: concepts/dp-packages-datasets.md
- API Reference:
- Core: api/core.md
- Server: api/server.md
- Client: api/client.md
- Poster: poster.md
markdown_extensions:
- abbr
- attr_list
- admonition
- footnotes
- md_in_html
- toc:
permalink: "#"
- pymdownx.blocks.admonition
- pymdownx.blocks.details
- pymdownx.blocks.caption
- pymdownx.blocks.tab:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.highlight:
pygments_lang_class: true
- pymdownx.magiclink
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.tasklist:
custom_checkbox: true
plugins:
- search
- autorefs
- markdown-exec
- mkdocs-jupyter:
include: ["*.ipynb"]
include_requirejs: true
no_prompt: True # hides In[#] / Out[#]
- mike:
canonical_version: latest
- mkdocstrings:
handlers:
python:
paths:
- core/lomas_core
- server/lomas_server
- client/lomas_client
inventories:
- https://docs.python.org/3/objects.inv
- https://mkdocstrings.github.io/objects.inv
- https://mkdocstrings.github.io/autorefs/objects.inv
- https://mkdocstrings.github.io/griffe/objects.inv
- https://python-markdown.github.io/objects.inv
options:
# General https://mkdocstrings.github.io/python/usage/configuration/general/
backlinks: tree
show_bases: false
show_inheritance_diagram: true # requires mermaid
show_source: true
# Headings https://mkdocstrings.github.io/python/usage/configuration/headings/
parameter_headings: true
show_root_full_path: false
show_symbol_type_heading: true
show_symbol_type_toc: true
type_parameter_headings: true
# Members https://mkdocstrings.github.io/python/usage/configuration/members/
inherited_members: true
members_order: source
filters: ['!^_']
summary: true
# Docstrings https://mkdocstrings.github.io/python/usage/configuration/docstrings/
docstring_section_style: list
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
relative_crossrefs: true
scoped_crossrefs: true
# Signatures https://mkdocstrings.github.io/python/usage/configuration/signatures/
line_length: 90
show_signature_annotations: true
show_signature_type_parameters: true
separate_signature: true
signature_crossrefs: true
unwrap_annotated: true