Skip to content

Commit a1daeaf

Browse files
pkooijmishig25imstevenpmwork
authored
feat(docs): Add new docs build process (#1046)
Co-authored-by: Mishig Davaadorj <[email protected]> Co-authored-by: Steven Palma <[email protected]>
1 parent 6d723c4 commit a1daeaf

10 files changed

+1017
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build documentation
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
paths:
7+
- "docs/**"
8+
branches:
9+
- main
10+
- doc-builder*
11+
- v*-release
12+
13+
14+
jobs:
15+
build: # zizmor: ignore[excessive-permissions] We follow the same pattern as in Transformers
16+
uses: huggingface/doc-builder/.github/workflows/build_main_documentation.yml@main
17+
with:
18+
commit_sha: ${{ github.sha }}
19+
package: lerobot
20+
additional_args: --not_python_module
21+
secrets:
22+
token: ${{ secrets.HUGGINGFACE_PUSH }}
23+
hf_token: ${{ secrets.HF_DOC_BUILD_PUSH }}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build PR Documentation
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- "docs/**"
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
10+
cancel-in-progress: true
11+
12+
jobs:
13+
build: # zizmor: ignore[excessive-permissions] We follow the same pattern as in Transformers
14+
uses: huggingface/doc-builder/.github/workflows/build_pr_documentation.yml@main
15+
with:
16+
commit_sha: ${{ github.event.pull_request.head.sha }}
17+
pr_number: ${{ github.event.number }}
18+
package: lerobot
19+
additional_args: --not_python_module
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Upload PR Documentation
2+
3+
on: # zizmor: ignore[dangerous-triggers] We follow the same pattern as in Transformers
4+
workflow_run:
5+
workflows: [ "Build PR Documentation" ]
6+
types:
7+
- completed
8+
9+
jobs:
10+
build: # zizmor: ignore[excessive-permissions] We follow the same pattern as in Transformers
11+
uses: huggingface/doc-builder/.github/workflows/upload_pr_documentation.yml@main
12+
with:
13+
package_name: lerobot
14+
secrets:
15+
hf_token: ${{ secrets.HF_DOC_BUILD_PUSH }}
16+
comment_bot_token: ${{ secrets.COMMENT_BOT_TOKEN }}

docs/README.md

Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
<!---
2+
Copyright 2020 The HuggingFace Team. All rights reserved.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
-->
16+
17+
# Generating the documentation
18+
19+
To generate the documentation, you first have to build it. Several packages are necessary to build the doc,
20+
you can install them with the following command, at the root of the code repository:
21+
22+
```bash
23+
pip install -e ".[docs]"
24+
```
25+
26+
You will also need `nodejs`. Please refer to their [installation page](https://nodejs.org/en/download)
27+
28+
---
29+
**NOTE**
30+
31+
You only need to generate the documentation to inspect it locally (if you're planning changes and want to
32+
check how they look before committing for instance). You don't have to `git commit` the built documentation.
33+
34+
---
35+
36+
## Building the documentation
37+
38+
Once you have setup the `doc-builder` and additional packages, you can generate the documentation by
39+
typing the following command:
40+
41+
```bash
42+
doc-builder build lerobot docs/source/ --build_dir ~/tmp/test-build
43+
```
44+
45+
You can adapt the `--build_dir` to set any temporary folder that you prefer. This command will create it and generate
46+
the MDX files that will be rendered as the documentation on the main website. You can inspect them in your favorite
47+
Markdown editor.
48+
49+
## Previewing the documentation
50+
51+
To preview the docs, first install the `watchdog` module with:
52+
53+
```bash
54+
pip install watchdog
55+
```
56+
57+
Then run the following command:
58+
59+
```bash
60+
doc-builder preview lerobot docs/source/
61+
```
62+
63+
The docs will be viewable at [http://localhost:3000](http://localhost:3000). You can also preview the docs once you have opened a PR. You will see a bot add a comment to a link where the documentation with your changes lives.
64+
65+
---
66+
**NOTE**
67+
68+
The `preview` command only works with existing doc files. When you add a completely new file, you need to update `_toctree.yml` & restart `preview` command (`ctrl-c` to stop it & call `doc-builder preview ...` again).
69+
70+
---
71+
72+
## Adding a new element to the navigation bar
73+
74+
Accepted files are Markdown (.md).
75+
76+
Create a file with its extension and put it in the source directory. You can then link it to the toc-tree by putting
77+
the filename without the extension in the [`_toctree.yml`](https://github.com/huggingface/lerobot/blob/main/docs/source/_toctree.yml) file.
78+
79+
## Renaming section headers and moving sections
80+
81+
It helps to keep the old links working when renaming the section header and/or moving sections from one document to another. This is because the old links are likely to be used in Issues, Forums, and Social media and it'd make for a much more superior user experience if users reading those months later could still easily navigate to the originally intended information.
82+
83+
Therefore, we simply keep a little map of moved sections at the end of the document where the original section was. The key is to preserve the original anchor.
84+
85+
So if you renamed a section from: "Section A" to "Section B", then you can add at the end of the file:
86+
87+
```
88+
Sections that were moved:
89+
90+
[ <a href="#section-b">Section A</a><a id="section-a"></a> ]
91+
```
92+
and of course, if you moved it to another file, then:
93+
94+
```
95+
Sections that were moved:
96+
97+
[ <a href="../new-file#section-b">Section A</a><a id="section-a"></a> ]
98+
```
99+
100+
Use the relative style to link to the new file so that the versioned docs continue to work.
101+
102+
For an example of a rich moved sections set please see the very end of [the transformers Trainer doc](https://github.com/huggingface/transformers/blob/main/docs/source/en/main_classes/trainer.md).
103+
104+
### Adding a new tutorial
105+
106+
Adding a new tutorial or section is done in two steps:
107+
108+
- Add a new file under `./source`. This file can either be ReStructuredText (.rst) or Markdown (.md).
109+
- Link that file in `./source/_toctree.yml` on the correct toc-tree.
110+
111+
Make sure to put your new file under the proper section. If you have a doubt, feel free to ask in a Github Issue or PR.
112+
113+
### Writing source documentation
114+
115+
Values that should be put in `code` should either be surrounded by backticks: \`like so\`. Note that argument names
116+
and objects like True, None or any strings should usually be put in `code`.
117+
118+
#### Writing a multi-line code block
119+
120+
Multi-line code blocks can be useful for displaying examples. They are done between two lines of three backticks as usual in Markdown:
121+
122+
123+
````
124+
```
125+
# first line of code
126+
# second line
127+
# etc
128+
```
129+
````
130+
131+
#### Adding an image
132+
133+
Due to the rapidly growing repository, it is important to make sure that no files that would significantly weigh down the repository are added. This includes images, videos, and other non-text files. We prefer to leverage a hf.co hosted `dataset` like
134+
the ones hosted on [`hf-internal-testing`](https://huggingface.co/hf-internal-testing) in which to place these files and reference
135+
them by URL. We recommend putting them in the following dataset: [huggingface/documentation-images](https://huggingface.co/datasets/huggingface/documentation-images).
136+
If an external contribution, feel free to add the images to your PR and ask a Hugging Face member to migrate your images
137+
to this dataset.

docs/source/_toctree.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
- sections:
2+
- local: index
3+
title: LeRobot
4+
- local: installation
5+
title: Installation
6+
title: Get started
7+
- sections:
8+
- local: assemble_so101
9+
title: Assemble SO-101
10+
- local: getting_started_real_world_robot
11+
title: Getting Started with Real-World Robots
12+
title: "Tutorials"

0 commit comments

Comments
 (0)