-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yaml
107 lines (94 loc) · 2.31 KB
/
mkdocs.yaml
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
site_name: loadbot
site_url: "https://kuzxnia.github.io/loadbot/"
site_description: "Workload database driver"
repo_url: "https://github.com/kuzxnia/loadbot"
repo_name: "kuzxnia/loadbot"
theme:
name: material
features:
- announce.dismiss
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.action.edit
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.tracking
- navigation.tabs
- toc.integrate
palette:
- scheme: slate
primary: teal
accent: teal
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: default
primary: green
accent: green
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
nav:
- Home:
- index.md
- Getting Started:
# - Intro: getting_started/intro.md
- Install Guide: getting_started/install.md
- Quick Start: getting_started/quick-start.md
# - How it works: getting_started/how-it-works.md
# - Distributed workload: getting_started/multi-instance.md
- K8S: getting_started/k8s-orchiestration.md
# - Command Line Usage:
# - cli.md
- Configuration:
- setup/index.md
- Agent: setup/agent.md
- Jobs: setup/job.md
- Schemas: setup/schema.md
- Prometheus metrics export: setup/metrics.md
- Other features: setup/other.md
- Contributing:
- Development: contributing/development.md
- Code of conduct: contributing/code_of_conduct.md
- License: contributing/license.md
- How to report a bug: contributing/bug_reporting.md
- Known issues: contributing/known_issues.md
markdown_extensions:
- toc:
permalink: 💡
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.snippets:
check_paths: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- admonition
- attr_list
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
extra_css:
- static/css/termynal.css
- static/css/custom.css
extra_javascript:
- static/js/termynal.js
- static/js/custom.js