-
Notifications
You must be signed in to change notification settings - Fork 30
/
mkdocs.yml
58 lines (55 loc) · 1.42 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
site_name: Jupyverse
site_description: A composable Jupyter server based on FastAPI
repo_url: https://github.com/jupyter-server/jupyverse
theme:
name: 'material'
palette:
- scheme: default
primary: 'black'
accent: 'black'
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- scheme: slate
primary: 'black'
accent: 'black'
toggle:
icon: material/lightbulb
name: Switch to light mode
logo: jupyter.svg
favicon: jupyter.svg
features:
- navigation.instant
- navigation.top
- navigation.sections
- search.suggest
- search.highlight
- content.code.annotate
- content.code.copy
nav:
- Overview: index.md
- install.md
- Usage:
- usage/single_user.md
- usage/multi_user.md
- usage/microservices.md
- Turorials:
- tutorials/standalone_jupyverse_deployment.md
- tutorials/jupyterhub_jupyverse_deployment.md
- Plugins:
- 'auth': plugins/auth.md
- 'contents': plugins/contents.md
- 'frontend': plugins/frontend.md
- 'lab': plugins/lab.md
- 'jupyterlab': plugins/jupyterlab.md
- 'notebook': plugins/notebook.md
- 'nbconvert': plugins/nbconvert.md
- 'login': plugins/login.md
- 'kernels': plugins/kernels.md
- 'terminals': plugins/terminals.md
- 'yjs': plugins/yjs.md
- 'resource-usage': plugins/resource_usage.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences