2013-05-09 20:27:12 +01:00
|
|
|
Documentation
|
|
|
|
|
=============
|
|
|
|
|
|
|
|
|
|
The jq website, manpages and some of the tests are generated from this
|
2019-02-20 20:50:08 -05:00
|
|
|
directory. The manual is a YAML file in `content/manual`.
|
2013-05-09 20:27:12 +01:00
|
|
|
|
|
|
|
|
To build the documentation (including building the jq manpage), you'll
|
2023-07-18 08:17:21 +09:00
|
|
|
need `python3` and `pipenv`. You can install `pipenv` like so:
|
2013-05-09 20:27:12 +01:00
|
|
|
|
2019-02-20 20:50:08 -05:00
|
|
|
pip install pipenv
|
2013-05-09 20:27:12 +01:00
|
|
|
|
2023-07-18 08:17:21 +09:00
|
|
|
Though, you may need to say `pip3` instead, depending on your system. Once
|
|
|
|
|
you have `pipenv` installed, you can install the dependencies by running
|
2023-07-31 09:52:52 +09:00
|
|
|
`pipenv sync` from the `docs/` directory.
|
2013-05-09 20:27:12 +01:00
|
|
|
|
2023-07-10 14:35:11 -05:00
|
|
|
Also, you may need to run `virtualenv -p /usr/bin/python3 venv/` and
|
2023-07-18 08:17:21 +09:00
|
|
|
then `source venv/bin/activate`, and only then `pipenv sync`.
|
2023-07-10 14:35:11 -05:00
|
|
|
|
2019-02-20 20:50:08 -05:00
|
|
|
Once this is done, rerun `./configure` in the jq root directory and then
|
2023-07-31 09:52:52 +09:00
|
|
|
the `Makefile` will be able to generate the jq manpage. You can just run
|
|
|
|
|
`make jq.1` to build the manpage manually, and `make tests/man.test` to
|
|
|
|
|
update the manual tests.
|
2013-05-09 20:27:12 +01:00
|
|
|
|
2023-07-31 09:52:52 +09:00
|
|
|
To build the website, run `pipenv run python3 build_website.py --root /output`
|
|
|
|
|
in the `docs/` directory. To serve them locally, you can run
|
|
|
|
|
`python3 -m http.server`.
|