-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
67 lines (63 loc) · 2.71 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
site_name: Project Starling
theme: readthedocs
repo_url: https://github.com/UoBFlightLab/ProjectStarling
site_description: 'BRL Flight Arena 2.0'
docs_dir: 'docs'
copyright: Copyright © 2021 University of Bristol Flight Laboratory
markdown_extensions:
- toc:
permalink: True
- pymdownx.keys:
strict: True
plugins:
- search
- macros
- enumerate-headings:
toc_depth: 3
- mermaid2
extra_css: [ kbd.css ]
nav:
- "Home":
- "Overview": 'README.md'
- "Getting Started": 'guide/getting-started.md'
- "Background": 'details/background.md'
- "Ecosystem": 'other/related_projects_and_links.md'
- "Tutorials":
- "1. Introduction to Starling": 'tutorials/introduction.md'
- "2. The Starling CLI": 'guide/cli.md'
- "Single Drone User Guides":
- "Single Drone Simulation on Local Machine": "guide/single-drone-local-machine.md"
- "Single Drone Simulation on Local Cluster": "guide/kube-single-drone-local-machine.md"
- "Single Drone on Hardware": "guide/single-drone-drones.md"
- "Multiple Drone User Guides":
- "Multiple Drones Simulation on Local Cluster": "guide/multiple-drone-local-machine.md"
- "Multiple Drones on Hardware": "guide/multiple-drone-drones.md"
- "Simulation and SITL":
- "Spawning Different Vehicles and Objects": "guide/different_vehicles.md"
- "Additional Guides":
- "Windows Support and FAQ": "guide/windows-support.md"
- "Developing a controller": 'guide/writing-a-controller.md'
- "Development Guide": 'guide/development.md'
- "Understanding Docker": 'details/docker.md'
- "Understanding Kubernetes": "details/kubernetes.md"
- "Kubernetes Dashboard Guide": 'details/kubernetes-dashboard.md'
- "Physical Flight":
- "BRL Flight Arena": "details/flight_arena.md"
- "Adding A New Vehicle" : "details/adding_physical_drone.md"
- "Implementation":
- "Example Python Controller": "guide/example-controller.md"
- "Example Kubernetes Deployments": "details/kubernetes-deployment.md"
- "Build System": "details/build_system.md"
- "Image Documentation":
- "starling-ui": "docker-images/ui.md"
- "starling-mavros": "docker-images/mavros.md"
- "starling-controller-base": "docker-images/controller-base.md"
- "starling-sim-base-core": "docker-images/sim-base-core.md"
- "starling-sim-base-px4": "docker-images/sim-base-px4.md"
- "starling-sim-ardupilot-copter/plane": "docker-images/sim-ardupilot-vehicle.md"
- "starling-sim-ardupilot-gazebo": "docker-images/sim-ardupilot-gazebo.md"
- "starling-sim-iris-ap": "docker-images/sim-iris-ap.md"
- "starling-vicon": "docker-images/starling-vicon.md"
- "Miscellaneous":
- "Ideas": "other/ideas.md"
- "MATLAB (unstable)": "other/MATLAB.md"