This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
129 lines (120 loc) · 3.22 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
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
# Project information
site_name: WebGrid
site_description: Decentralized, scalable and robust implementation of a selenium-grid equivalent. Based on the WebDriver specification by the W3C.
site_author: Til Blechschmidt
site_url: https://webgrid.dev/
# Repository
repo_name: TilBlechschmidt/WebGrid
repo_url: https://github.com/TilBlechschmidt/WebGrid
edit_uri: edit/main/docs/
# Copyright
copyright: Copyright © 2019 - 2021 Til Blechschmidt
# Navigation
nav:
- "Home":
- "index.md"
- "getting-started.md"
- "faq.md"
- "Features":
- "features/api.md"
- "features/capabilities.md"
- "features/screen-recording.md"
- "features/hybrid-grid.md"
- "Kubernetes":
- "kubernetes/configuration.md"
- "kubernetes/access.md"
- "kubernetes/storage.md"
- "kubernetes/scaling.md"
- "Guides":
- "guides/k3s.md"
- "|":
- "--separator--"
- "Contribute":
- "contribute/index.md"
- "contribute/issues.md"
- "contribute/code-contrib.md"
- "contribute/dev-environment.md"
- "contribute/release.md"
- "Code of conduct": "contribute/code-of-conduct.md"
- "Architecture":
- "architecture/index.md"
- "architecture/database.md"
- "architecture/structure.md"
- "architecture/services.md"
- "architecture/error-handling.md"
- "architecture/workflows.md"
- "architecture/discovery.md"
- "Issue Tracker":
- "https://github.com/TilBlechschmidt/WebGrid/issues"
# Configuration
theme:
name: material
language: en
palette:
primary: teal
accent: teal
scheme: preference
font:
text: Roboto
code: Roboto Mono
features:
- navigation.tabs
extra_css:
- docs.css
# Extras
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/TilBlechschmidt
- icon: fontawesome/brands/twitter
link: https://twitter.com/themegatb
- icon: fontawesome/brands/docker
link: https://hub.docker.com/u/webgrid
- icon: fontawesome/brands/discord
link: https://discord.gg/yYaPcNM
# Plugins
plugins:
- search
- git-revision-date-localized
- codeinclude
- mermaid2:
arguments:
theme: "dark"
- helm-repo:
charts:
- distribution/kubernetes/demo
- distribution/kubernetes/demo/charts/webgrid
helm_repo_url: https://webgrid.dev/
- mkdocs-simple-hooks:
hooks:
on_pre_build: "docs.hooks:on_pre_build"
on_post_build: "docs.hooks:on_post_build"
extra_javascript:
- https://unpkg.com/[email protected]/dist/mermaid.min.js
# Extensions
markdown_extensions:
- admonition
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed
- pymdownx.tilde