-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
268 lines (265 loc) · 10.4 KB
/
mkdocs.yaml
File metadata and controls
268 lines (265 loc) · 10.4 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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
# ---------------------- PROJECT SPECIFIC ---------------------------
site_name: DataJoint Documentation
site_url: https://docs.datajoint.com/
repo_name: datajoint/datajoint-docs
repo_url: https://github.com/datajoint/datajoint-docs
nav:
- Home: index.md
- Concepts:
- explanation/index.md
- Overview:
- Data Pipelines: explanation/data-pipelines.md
- FAQ: explanation/faq.md
- Data Model:
- Relational Workflow Model: explanation/relational-workflow-model.md
- Entity Integrity: explanation/entity-integrity.md
- Normalization: explanation/normalization.md
- Computation Model: explanation/computation-model.md
- Queries:
- Query Algebra: explanation/query-algebra.md
- Semantic Matching: explanation/semantic-matching.md
- Storage:
- Type System: explanation/type-system.md
- Custom Codecs: explanation/custom-codecs.md
- Tutorials:
- tutorials/index.md
- Basics:
- First Pipeline: tutorials/basics/01-first-pipeline.ipynb
- Schema Design: tutorials/basics/02-schema-design.ipynb
- Data Entry: tutorials/basics/03-data-entry.ipynb
- Queries: tutorials/basics/04-queries.ipynb
- Computation: tutorials/basics/05-computation.ipynb
- Object Storage: tutorials/basics/06-object-storage.ipynb
- Examples:
- University Database: tutorials/examples/university.ipynb
- Hotel Reservations: tutorials/examples/hotel-reservations.ipynb
- Languages & Proficiency: tutorials/examples/languages.ipynb
- Fractal Pipeline: tutorials/examples/fractal-pipeline.ipynb
- Blob Detection: tutorials/examples/blob-detection.ipynb
- Domain:
- Calcium Imaging: tutorials/domain/calcium-imaging/calcium-imaging.ipynb
- Electrophysiology: tutorials/domain/electrophysiology/electrophysiology.ipynb
- Ephys with Object Storage: tutorials/domain/electrophysiology/ephys-with-npy.ipynb
- Allen CCF: tutorials/domain/allen-ccf/allen-ccf.ipynb
- Advanced:
- SQL Comparison: tutorials/advanced/sql-comparison.ipynb
- JSON Data Type: tutorials/advanced/json-type.ipynb
- Distributed Computing: tutorials/advanced/distributed.ipynb
- Custom Codecs: tutorials/advanced/custom-codecs.ipynb
- Instances: tutorials/advanced/instances.ipynb
- How-To:
- how-to/index.md
- Setup:
- Installation: how-to/installation.md
- Manage Secrets: how-to/manage-secrets.md
- Configure Database: how-to/configure-database.md
- Use Isolated Instances: how-to/use-instances.md
- Configure Object Storage: how-to/configure-storage.md
- Command-Line Interface: how-to/use-cli.md
- Schema Design:
- Define Tables: how-to/define-tables.md
- Model Relationships: how-to/model-relationships.ipynb
- Master-Part Tables: how-to/master-part.ipynb
- Design Primary Keys: how-to/design-primary-keys.md
- Read Diagrams: how-to/read-diagrams.ipynb
- Project Management:
- Manage Pipeline Project: how-to/manage-pipeline-project.md
- Deploy to Production: how-to/deploy-production.md
- Data Operations:
- Insert Data: how-to/insert-data.md
- Query Data: how-to/query-data.md
- Fetch Results: how-to/fetch-results.md
- Delete Data: how-to/delete-data.md
- Computation:
- Run Computations: how-to/run-computations.md
- Distributed Computing: how-to/distributed-computing.md
- Handle Errors: how-to/handle-errors.md
- Monitor Progress: how-to/monitor-progress.md
- Object Storage:
- Overview: how-to/object-storage-overview.md
- Choose Storage Type: how-to/choose-storage-type.md
- Use Object Storage: how-to/use-object-storage.md
- Use NPY Codec: how-to/use-npy-codec.md
- Use Plugin Codecs: how-to/use-plugin-codecs.md
- Create Custom Codecs: how-to/create-custom-codec.md
- Manage Large Data: how-to/manage-large-data.md
- Clean Up Storage: how-to/garbage-collection.md
- Maintenance:
- Migrate to 2.0: how-to/migrate-to-v20.md
- Alter Tables: how-to/alter-tables.md
- Backup and Restore: how-to/backup-restore.md
- Testing:
- Testing Best Practices: how-to/testing.md
- Reference:
- reference/index.md
- Specifications:
- reference/specs/index.md
- Database Backends: reference/specs/database-backends.md
- Schema Definition:
- Table Declaration: reference/specs/table-declaration.md
- Master-Part: reference/specs/master-part.md
- Virtual Schemas: reference/specs/virtual-schemas.md
- Query Algebra:
- Query Operators: reference/specs/query-algebra.md
- Semantic Matching: reference/specs/semantic-matching.md
- Primary Keys: reference/specs/primary-keys.md
- Fetch API: reference/specs/fetch-api.md
- Diagram: reference/specs/diagram.md
- Type System:
- Types: reference/specs/type-system.md
- Codec API: reference/specs/codec-api.md
- NPY Codec: reference/specs/npy-codec.md
- Data Operations:
- Data Manipulation: reference/specs/data-manipulation.md
- AutoPopulate: reference/specs/autopopulate.md
- Job Metadata: reference/specs/job-metadata.md
- Object Store Configuration: reference/specs/object-store-configuration.md
- Instance & Thread Safety:
- Thread-Safe Mode: reference/specs/thread-safe-mode.md
- Configuration: reference/configuration.md
- Definition Syntax: reference/definition-syntax.md
- Operators: reference/operators.md
- Errors: reference/errors.md
- Elements: elements/index.md
- API: api/ # Auto-generated via gen-files + literate-nav
- About:
- about/index.md
- What's New in 2.2: about/whats-new-22.md
- What's New in 2.1: about/whats-new-21.md
- What's New in 2.0: about/whats-new-2.md
- History: about/history.md
- Documentation Versioning: about/versioning.md
- Platform: https://www.datajoint.com/sign-up
- Citation: about/citation.md
- Publications: about/publications.md
- Contributing: about/contributing.md
# ---------------------------- STANDARD -----------------------------
docs_dir: ./src
edit_uri: ./edit/main/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:
- navigation.sections
- navigation.indexes
- toc.follow
- announce.dismiss
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
- mermaid2
- section-index
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
paths:
- /datajoint-python/src # Path to datajoint-python source (mounted in Docker)
options:
docstring_style: numpy
members_order: source
group_by_category: false
show_source: false
show_root_heading: true
show_root_full_path: false
separate_signature: true
line_length: 88
filters:
- "!^_" # Exclude private members
- gen-files:
scripts:
- scripts/gen_api_pages.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocs-jupyter:
include_source: true
execute: false # Don't execute notebooks during build
- exclude:
glob:
- images/*md
- "*/SUMMARY.md"
markdown_extensions:
- admonition # Enable !!! admonition blocks
- attr_list
- md_in_html
- toc:
permalink: true
- pymdownx.emoji:
options:
custom_icons:
- .overrides/.icons
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- mdx_truly_sane_lists
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid_custom
- pymdownx.tabbed:
alternate_style: true
- footnotes
- pymdownx.details: # permit folded <details> blocks via `??? note "Title"` format
- pymdownx.snippets # Allows including file snippets e.g. --8<-- "; src/file.md"
- pymdownx.magiclink # Displays bare URLs as links
- pymdownx.tasklist: # Renders check boxes in tasks lists
custom_checkbox: true
- pymdownx.arithmatex: # LaTeX math support
generic: true
extra:
generator: false # Disable watermark
datajoint_version: "2.2" # DataJoint Python version this documentation covers
social:
- icon: main/company-logo
link: https://www.datajoint.com
name: DataJoint
- icon: material/book-open-variant
link: https://docs.datajoint.com
name: DataJoint Documentation
- icon: fontawesome/solid/comments
link: https://github.com/datajoint/datajoint-python/discussions
name: Discussions
- 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/@datajoint
name: YouTube
extra_css:
- assets/stylesheets/extra.css
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
- https://js-na1.hs-scripts.com/23133402.js # HubSpot chatbot