Skip to content

Commit fce22de

Browse files
authored
Minor: Update parquet-format pin (#157)
* Minor: Update parquet-format pin * Add instructions for updating
1 parent 2db55d6 commit fce22de

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ This website is built / powered by [Hugo](https://gohugo.io/) with the [Docsy Th
77
The following steps assume that you have `hugo` installed and working.
88
You can also use docker, see the [Docker section](#docker) for more information.
99

10+
## Updating `/docs/file-format` documentation`
11+
12+
The `/docs/file-format` pages (for example, https://parquet.apache.org/docs/file-format/data-pages/encodings/) are automatically
13+
generated from the `parquet-format` repository.
14+
To update the website to reflect the latest documentation, you need to update the
15+
submodule in this repository.
16+
17+
18+
```shell
19+
cd assets/parquet-format
20+
git checkout master
21+
git pull # update to the latest version of parquet-format
22+
cd ../..
23+
git add assets/parquet-format
24+
git commit -m "Update parquet-format submodule"
25+
git push
26+
```
27+
28+
1029
## Building and Running Locally
1130

1231
Clone this repository to run the website locally:

0 commit comments

Comments
 (0)