-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
38 lines (34 loc) · 1.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
site_name: Starling Tutorial
theme: readthedocs
repo_url: https://github.com/StarlingUAS/starling_controller_templates/
site_description: 'Starling Tutorial'
docs_dir: 'tutorial'
copyright: Copyright © 2022 University of Bristol Flight Laboratory
markdown_extensions:
- toc:
permalink: True
- pymdownx.keys:
strict: True
- mdx_math:
add_preview: True
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
plugins:
- search
- macros
- enumerate-headings:
toc_depth: 3
- mermaid2
nav:
- "Tutorial":
- "1. Getting Started ": 'getting_started.md'
- "2. ROS2 and UAV Control": 'ros2_uav.md'
- "3. Docker and Containerisation": "docker.md"
- "4. Creating your own Starling project": "creating.md"
- "5. Simulation and the Digital Double": "simulation.md"
- "6. Developing the example controller with ROS2 in CPP" : "cpp_example_dev.md"
- "7. Local testing with Docker-Compose": "testing_with_docker_compose.md"
- "8. Multi-UAV flight with Kubernetes for container deployment": "multiuav_kubernetes.md"
- "9. Local Integration testing with KinD Digital Double": "testing_with_kind.md"
- "10. Flying your controllers in the Flying Arena": "brl_flight.md"
- "11. Wrapping up and next steps": "next_steps.md"