-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yaml
131 lines (123 loc) · 3.46 KB
/
mkdocs.yaml
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
site_name: CLI and Python client | Deep Origin
site_author: Deep Origin
repo_url: https://github.com/deeporiginbio/deeporigin-client
repo_name: deeporiginbio/deeporigin-client
site_url: https://client-docs.deeporigin.io
docs_dir: 'docs'
theme:
name: material
logo: 'images/logo.svg'
palette:
primary: custom
font:
text: Inter
code: Roboto Mono
features:
- announce.dismiss
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.preview
- navigation.instant.progress
- navigation.sections
- navigation.path
- navigation.tabs
- navigation.top
- navigation.tracking
- search.suggest
- toc.follow
favicon: images/favicon.png
extra_css:
- stylesheets/extra.css
nav:
- Quickstart:
- index.md
- Install: install.md
- Configure: configure.md
- Authenticate: how-to/auth.md
- Platform:
- platform/index.md
- How to:
- Get user information: how-to/platform/user-info.md
- Get workstation information: how-to/platform/workstation-info.md
- Data hub:
- data-hub/index.md
- Deep Origin DataFrames:
- Tutorial: data-hub/dataframes.md
- How to:
- Create objects: how-to/data-hub/create.md
- Delete objects: how-to/data-hub/delete.md
- List data: how-to/data-hub/list-data.md
- View data: how-to/data-hub/view-data.md
- Upload files: how-to/data-hub/upload-files.md
- Download files: how-to/data-hub/download-files.md
- Write data: how-to/data-hub/write-data.md
- API reference:
- High-level API: ref/data-hub/high-level-api.md
- Low-level API: ref/data-hub/low-level-api.md
- Classes & constants: ref/data-hub/types.md
- Compute hub:
- compute-hub/index.md
- How to:
- Install variables and secrets: how-to/compute-hub/variables.md
- Get info about your workstation: how-to/compute-hub/workstation-info.md
- Changelog: changelog.md
- Support: https://www.support.deeporigin.com/servicedesk/customer/portals
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
use_directory_urls: false
markdown_extensions:
- tables
- abbr
- admonition
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- codehilite
- footnotes
- attr_list
- md_in_html
- toc:
permalink: true
title: Page contents
- pymdownx.details
- pymdownx.superfences
- pymdownx.arithmatex:
generic: true
- pymdownx.snippets
- pymdownx.extra
- pymdownx.highlight:
pygments_lang_class: true
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: ["."]
options:
annotations_path: brief
show_source: false
docstring_options:
ignore_init_summary: true
docstring_section_style: table
heading_level: 2
inherited_members: true
merge_init_into_class: false
separate_signature: true
show_root_heading: true
show_root_full_path: true
show_signature_annotations: true
signature_crossrefs: true
show_symbol_type_heading: true
line_length: 60
show_signature: true