2018-07-05 03:44:15 -04:00
|
|
|
# Documentation Maintenance Overview
|
|
|
|
|
|
|
|
The documentation found in this directory is hosted at:
|
|
|
|
|
|
|
|
- https://tendermint.com/docs/
|
|
|
|
|
2018-09-10 14:42:48 +08:00
|
|
|
and built using [VuePress](https://vuepress.vuejs.org/) like below:
|
2018-07-05 03:44:15 -04:00
|
|
|
|
2018-09-10 14:42:48 +08:00
|
|
|
```bash
|
|
|
|
npm install -g vuepress # global install vuepress tool, only once
|
|
|
|
npm install
|
|
|
|
|
|
|
|
mkdir -p .vuepress && cp config.js .vuepress/
|
|
|
|
vuepress build
|
|
|
|
```
|
2018-07-05 03:44:15 -04:00
|
|
|
|
2018-08-14 18:40:05 -04:00
|
|
|
Under the hood, Jenkins listens for changes (on develop or master) in ./docs then rebuilds
|
|
|
|
either the staging or production site depending on which branch the changes were made.
|
2018-07-18 05:32:17 -04:00
|
|
|
|
2018-08-14 18:40:05 -04:00
|
|
|
To update the Table of Contents (layout of the documentation sidebar), edit the
|
|
|
|
`config.js` in this directory, while the `README.md` is the landing page for the
|
|
|
|
website documentation.
|
2018-07-05 03:44:15 -04:00
|
|
|
|
2018-09-10 14:42:48 +08:00
|
|
|
To view the latest documentation on the develop branch, see the staging site:
|
|
|
|
|
|
|
|
- https://tendermint-staging.interblock.io/docs/
|
|
|
|
|
|
|
|
and the documentation on master branch is found here:
|
|
|
|
|
|
|
|
- https://tendermint.com/docs/
|
|
|
|
|