-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
207 lines (198 loc) · 6.65 KB
/
Copy pathmkdocs.yml
File metadata and controls
207 lines (198 loc) · 6.65 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
# PiHerder user + developer wiki
# Build: pip install -r requirements-docs.txt && mkdocs serve
# Deploy: GitHub Actions → Pages (Settings → Pages → Source: GitHub Actions)
# Workflow: .github/workflows/docs.yml · validate: mkdocs build --strict
site_name: PiHerder Docs
site_description: Operator and developer documentation for PiHerder — fleet management for Raspberry Pi and Linux hosts.
site_author: Bjorn Gluck
site_url: https://piherder-docs.hacknow.info/
repo_url: https://github.com/bjorngluck/piherder
repo_name: bjorngluck/piherder
edit_uri: edit/main/wiki/
docs_dir: wiki
site_dir: site
copyright: Copyright © 2026 Bjorn Gluck · MIT License
# Do not treat repo notes as site pages (README conflicts with index.md in strict mode)
exclude_docs: |
README.md
assets/screenshots/README.md
theme:
name: material
custom_dir: wiki/overrides
# Official PiHerder mark (black-ink light variant; same family as app header)
logo: assets/piherder-logo-header.png
favicon: assets/favicon.png
language: en
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.top
- navigation.footer
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.tooltips
- toc.follow
palette:
- media: "(prefers-color-scheme)"
scheme: default
primary: red
accent: green
toggle:
icon: material/brightness-auto
name: System theme
- media: "(prefers-color-scheme: light)"
scheme: default
primary: red
accent: green
toggle:
icon: material/weather-sunny
name: Light mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: red
accent: green
toggle:
icon: material/weather-night
name: Dark mode
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/github
admonition:
note: material/information-outline
tip: material/lightbulb-outline
warning: material/alert-outline
danger: material/lightning-bolt
success: material/check-circle-outline
extra_css:
- stylesheets/extra.css
plugins:
- search:
lang: en
- tags
- minify:
minify_html: true
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
toc_depth: 3
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path:
- .
- wiki
check_paths: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.keys
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/bjorngluck/piherder
name: GitHub
generator: false
nav:
- Home: index.md
- Getting started:
- Overview: getting-started/index.md
- Requirements: getting-started/requirements.md
- Install (Docker Compose): getting-started/install.md
- First login: getting-started/first-login.md
- Trusted HTTPS & TLS: getting-started/https-tls.md
- Appearance (light / dark): getting-started/appearance.md
- Operator scenarios: getting-started/operator-scenarios.md
- Day to day:
- Dashboard & Services: day-to-day/dashboard-and-services.md
- Pins & host jump: day-to-day/navigation-pins.md
- Add a server: day-to-day/add-server.md
- HAOS hosts: day-to-day/haos-hosts.md
- Backups & restore: day-to-day/backups.md
- Updates & patching: day-to-day/updates-and-patching.md
- Jobs, audit & notifications: day-to-day/jobs-audit-notifications.md
- Remove a server: day-to-day/remove-server.md
- Docker on hosts:
- Overview: docker/overview.md
- Inventory cache: docker/inventory.md
- Compose edit & deploy: docker/compose-edit.md
- Service templates:
- Overview: service-templates/overview.md
- Deploy a template: service-templates/deploy.md
- From host: service-templates/from-host.md
- Secrets model: service-templates/secrets.md
- Integrations:
- Overview (Catalog): integrations/overview.md
- Uptime Kuma: integrations/uptime-kuma.md
- Grafana: integrations/grafana.md
- Pi-hole: integrations/pihole.md
- Network maps: integrations/dns-fabric.md
- LAN Discovery (nmap): integrations/lan-discovery.md
- Nginx Proxy Manager: integrations/npm.md
- Generic links (HA / Frigate / n8n): integrations/generic-links.md
- Certificates: integrations/certificates.md
- Obtain a cert (ACME): integrations/certificates-obtain-acme.md
- Account & security:
- Roles (RBAC): account-security/roles.md
- Users: account-security/users.md
- 2FA & force 2FA: account-security/two-factor.md
- PWA & Web Push: account-security/pwa-push.md
- Operations:
- Environment reference: operations/env-reference.md
- Volumes: operations/volumes.md
- Settings: operations/settings.md
- Stack Status: operations/status.md
- Self-backup & DR: operations/self-backup.md
- Upgrades: operations/upgrades.md
- Multi-worker Celery: operations/multi-worker.md
- Metrics & webhooks: operations/metrics-webhooks.md
- Alerts (email & webhooks): operations/alerts-email-webhooks.md
- API tokens: operations/api-tokens.md
- Troubleshooting:
- Overview: troubleshooting/index.md
- Locked out / sole admin: troubleshooting/locked-out.md
- SSH, rsync & dependencies: troubleshooting/ssh-rsync.md
- Backups stuck or failing: troubleshooting/backups.md
- Push / PWA: troubleshooting/push.md
- Templates & Docker: troubleshooting/templates-docker.md
- Developers:
- Overview: developers/index.md
- Local setup: developers/setup.md
- Architecture: developers/architecture.md
- Template schema: developers/templates-schema.md
- Testing: developers/testing.md
- Publish image: developers/publish-image.md
- Contributing docs (versioning & screenshots): developers/contributing-docs.md