This repository has been archived by the owner on Oct 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
90 lines (84 loc) · 2.32 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
# Site info
site_name: hoom
site_url: https://berrysauce.me/hoom
site_author: Paul Haedrich
site_description: >-
Build your own HomeKit Bridge & Accessories with Hoom. This is
the documentation for the Hoom Python package.
# Repository info
repo_name: berrysauce/hoom
repo_url: https://github.com/berrysauce/hoom
edit_uri: /berrysauce/hoom/blob/main/docs
# Copyright
copyright: Copyright © 2023 Paul Haedrich
# Theme configuration
theme:
name: material
logo: https://raw.githubusercontent.com/berrysauce/hoom/main/docs/logo.png
palette:
# scheme: slate # (darkmode)
primary: black
accent: amber
icon:
repo: fontawesome/brands/github
features:
- announce.dismiss
- navigation.tabs
- navigation.sections
- navigation.path
- navigation.top
- navigation.tracking
- navigation.indexes
- search.highlight
- search.share
- search.suggest
- toc.follow
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
highlightjs: true
# Plugins
plugins:
- search
- mkdocstrings:
handlers:
# See: https://mkdocstrings.github.io/python/usage/
python:
options:
docstring_style: sphinx
# Markdown extensions
markdown_extensions:
- markdown_include.include:
base_path: .
- admonition
- pymdownx.details
- pymdownx.superfences
# Navigation
nav:
- Home:
- index.md
- Getting Started:
- Installing & Updating: getting-started/installation.md
- Quickstart: getting-started/quickstart.md
- Examples: getting-started/examples.md
- Basics:
- Bridge: basics/bridge.md
- Accessories:
- Lightbulb: basics/accessories/lightbulb.md
- Switch: basics/accessories/switch.md
- Temperature Sensor: basics/accessories/temperature-sensor.md
- Responses: basics/responses.md
- Web UI:
- How to use the Web UI: web/guide.md
- Hoom API: web/api.md
- Advanced:
- Custom Accessories: advanced/custom-accessories.md
- Security:
- How to keep your Bridge secure: security/guide.md
- Changelog: https://github.com/berrysauce/hoom/releases
- Donate: https://github.com/sponsors/berrysauce
- Code of Conduct: coc.md
- Security Policy: security/policy.md
- Legal Disclaimer: disclaimer.md