forked from ibm-watson-iot/iot-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
68 lines (63 loc) · 1.88 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
# mkdocs serve
site_name: IBM Watson IoT Platform
site_url: https://ibm-watson-iot.github.io/iot-python
repo_name: GitHub
repo_url: https://github.com/ibm-watson-iot/iot-python
edit_uri: blob/master/docs/
nav:
- 'Python SDK': index.md
- 'Common Topics':
- 'Basic Concepts': concepts.md
- 'MQTT Primer': mqtt.md
- 'Custom Message Formats': custommsg.md
- 'Exceptions': exceptions.md
- 'Application Development':
- 'Application SDK': application/index.md
- 'Configuration': application/config.md
- 'Device Commands': application/mqtt/commands.md
- 'Device Events': application/mqtt/events.md
- 'Device Status Updates': application/mqtt/status.md
- 'Registry - Types': application/api/registry/types.md
- 'Registry - Devices': application/api/registry/devices.md
- 'Registry - Diagnostics': application/api/registry/diag.md
- 'Device Management': application/api/mgmt.md
- 'Service Bindings': application/api/bindings.md
- 'Data Store Connectors': application/api/dsc.md
- 'Last Event Cache': application/api/lec.md
- 'Service Status': application/api/status.md
- 'Usage Reports': application/api/usage.md
- 'Device Development':
- 'Device SDK': device/index.md
- 'Configuration': device/config.md
- 'Managed Devices': device/managed.md
- 'Gateway Development':
- 'Gateway SDK': gateway/index.md
- 'Configuration': gateway/config.md
- 'Managed Gateways': gateway/managed.md
theme:
name: readthedocs
highlightjs: true
hljs_languages:
- yaml
prev_next_buttons_location: none
extra_css:
- extra.css
markdown_extensions:
- toc:
permalink:
- admonition
# Add this to support expandable sections
#- pymdownx.details
# https://squidfunk.github.io/mkdocs-material/extensions/admonition/
# Note
# Abstract
# Info
# Tip
# Success
# Question
# Warning
# Failure
# Danger
# Bug
# Example
# Quote