-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
194 lines (191 loc) · 6.04 KB
/
mkdocs.yaml
File metadata and controls
194 lines (191 loc) · 6.04 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
183
184
185
186
187
188
189
190
191
192
193
194
# ---------------------- PROJECT SPECIFIC ---------------------------
site_name: DataJoint Documentation
repo_url: https://github.com/datajoint/datajoint-python
repo_name: datajoint/datajoint-python
nav:
- DataJoint Python: index.md
- Quick Start Guide: quick-start.md
- Concepts:
- Principles: concepts/principles.md
- Data Model: concepts/data-model.md
- Data Pipelines: concepts/data-pipelines.md
- Teamwork: concepts/teamwork.md
- Terminology: concepts/terminology.md
- System Administration:
- Database Administration: sysadmin/database-admin.md
- Bulk Storage Systems: sysadmin/bulk-storage.md
- External Store: sysadmin/external-store.md
- Client Configuration:
- Install: client/install.md
- Credentials: client/credentials.md
- Settings: client/settings.md
- File Stores: client/stores.md
- Schema Design:
- Schema Creation: design/schema.md
- Table Definition:
- Table Tiers: design/tables/tiers.md
- Declaration Syntax: design/tables/declare.md
- Primary Key: design/tables/primary.md
- Attributes: design/tables/attributes.md
- Lookup Tables: design/tables/lookup.md
- Manual Tables: design/tables/manual.md
- Blobs: design/tables/blobs.md
- Attachments: design/tables/attach.md
- Filepaths: design/tables/filepath.md
- Custom Codecs: design/tables/codecs.md
- Dependencies: design/tables/dependencies.md
- Indexes: design/tables/indexes.md
- Master-Part Relationships: design/tables/master-part.md
- Schema Diagrams: design/diagrams.md
- Entity Normalization: design/normalization.md
- Data Integrity: design/integrity.md
- Schema Recall: design/recall.md
- Schema Drop: design/drop.md
- Schema Modification: design/alter.md
- Data Manipulations:
- manipulation/index.md
- Insert: manipulation/insert.md
- Delete: manipulation/delete.md
- Update: manipulation/update.md
- Transactions: manipulation/transactions.md
- Data Queries:
- Principles: query/principles.md
- Example Schema: query/example-schema.md
- Fetch: query/fetch.md
- Iteration: query/iteration.md
- Operators: query/operators.md
- Restrict: query/restrict.md
- Projection: query/project.md
- Join: query/join.md
- Aggregation: query/aggregation.md
- Union: query/union.md
- Universal Sets: query/universals.md
- Query Caching: query/query-caching.md
- Computations:
- Make Method: compute/make.md
- Populate: compute/populate.md
- Key Source: compute/key-source.md
- Distributed Computing: compute/distributed.md
- Publish Data: publish-data.md
- Internals:
- SQL Transpilation: internal/transpilation.md
- Tutorials:
- JSON Datatype: tutorials/json.ipynb
- FAQ: faq.md
- Developer Guide: develop.md
- Citation: citation.md
- Changelog: changelog.md
- API: api/ # defer to gen-files + literate-nav
# ---------------------------- STANDARD -----------------------------
edit_uri: ./edit/master/docs/src
docs_dir: ./src
theme:
font:
text: Roboto Slab
code: Source Code Pro
name: material
custom_dir: src/.overrides
icon:
logo: main/company-logo
favicon: assets/images/company-logo-blue.png
features:
- toc.integrate
- content.code.annotate # Add codeblock annotations
palette:
- media: "(prefers-color-scheme: light)"
scheme: datajoint
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
paths:
- "."
- /main/
options:
filters:
- "!^_"
docstring_style: sphinx # Replaces google default pending docstring updates
members_order: source
group_by_category: false
line_length: 88
- gen-files:
scripts:
- ./src/api/make_pages.py
- literate-nav:
nav_file: navigation.md
- exclude-search:
exclude:
- "*/navigation.md"
- "*/archive/*md"
- mkdocs-jupyter:
include: ["*.ipynb"]
- section-index
markdown_extensions:
- attr_list
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- .overrides/.icons
- mdx_truly_sane_lists
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.magiclink # Displays bare URLs as links
- pymdownx.tasklist: # Renders check boxes in tasks lists
custom_checkbox: true
- md_in_html
extra:
generator: false # Disable watermark
version:
provider: mike
social:
- icon: main/company-logo
link: https://www.datajoint.com
name: DataJoint
- icon: fontawesome/brands/slack
link: https://datajoint.slack.com
name: Slack
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/datajoint
name: LinkedIn
- icon: fontawesome/brands/twitter
link: https://twitter.com/datajoint
name: Twitter
- icon: fontawesome/brands/github
link: https://github.com/datajoint
name: GitHub
- icon: fontawesome/brands/docker
link: https://hub.docker.com/u/datajoint
name: DockerHub
- icon: fontawesome/brands/python
link: https://pypi.org/user/datajointbot
name: PyPI
- icon: fontawesome/brands/stack-overflow
link: https://stackoverflow.com/questions/tagged/datajoint
name: StackOverflow
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/channel/UCdeCuFOTCXlVMRzh6Wk-lGg
name: YouTube
extra_css:
- assets/stylesheets/extra.css