-
Notifications
You must be signed in to change notification settings - Fork 16
/
mkdocs.yml
96 lines (88 loc) · 2.41 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
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
# Project information
site_name: Dockside
site_url: https://github.com/newsnowlabs/dockside
site_description: >-
A tool for provisioning lightweight access-controlled IDEs, staging environments and sandboxes - aka 'devtainers' - on local machine, self-hosted on-premises (on raw metal or VM) or in the cloud
# Filesystem configuration
site_dir: '/home/newsnow/dockside/app/server/nginx/html/docs/'
# Repository
repo_name: NewsNow Labs/Dockside
repo_url: https://github.com/newsnowlabs/dockside
edit_uri: 'edit/main/docs/'
# Copyright
copyright: Copyright © 2017 - 2021 NewsNow Publishing Limited and contributors
# Theme configuration
theme:
name: material
logo: images/android-chrome-256x256.png
favicon: images/favicon.ico
features:
- tabs
- navigation.expand
- navigation.indexes
- navigation.top
- navigation.tracking
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
# - navigation.instant
- search.highlight
- search.share
- search.suggest
- toc.integrate
palette:
- scheme: default
primary: black
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- scheme: slate
primary: red
accent: red
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
extra:
homepage: /docs/
# Plugins
plugins:
- search # necessary for search to work
# - awesome-pages
# Extensions
markdown_extensions:
- smarty
- codehilite:
linenums: true
- pymdownx.superfences
- toc:
permalink: true
## Disabled for now, as not Github-compatible
# - admonition
# - footnotes
# - pymdownx.tasklist:
# custom_checkbox: true
# - pymdownx.tabbed
# - pymdownx.details
nav:
- Introduction: README.md
- Usage: usage.md
- Setup: setup.md
- Upgrading: upgrading.md
- Security: securing.md
- Extensions:
- Extensions: extensions.md
- LXCFS: extensions/lxcfs.md
- Multiarch: extensions/multiarch.md
- Sysbox: extensions/runtimes/sysbox.md
- Backups: extensions/backups.md
- Case Studies: case-studies/NewsNow.md
- Roadmap: roadmap.md
- Developing:
- Developing: developing/developing.md
- Building an image: developing/building-image.md
- Updating Theia: developing/updating-theia.md
- Building a production image: developing/building-production-image.md