The Apache MyNewt site is built using MkDocs.
- Install MkDocs on your system.
pip install GitPython
pip install sh
- Fork the repo.
- Work on the
develop
branch. - Preview your changes using MkDocs.
mkdocs serve
- visit http://localhost:8000
- Submit a pull request.
When a new release of MyNewt OS and its associated tools occurs, the documentation in the git develop
branch of this repository should be in sync with the released version. The following steps will create a documentation branch for the release and make it available as the default documentation from the mynewt-site.
- Merge
develop
tomaster
. - Switch to the master branch.
git checkout master
- Create a new stanza in
mkdocs.yml
to reflect the new version.- and update the
latest
flag, only one release should be marked latest. - and update version to match the new branch name.
- and update the
- Commit this change.
- Create a branch from master to reflect this new version.
- Run:
./build.py
- Run:
./serve.py
- Visit http://localhost:8000
- Run:
./deploy.sh
- This will leave you on the
asf-site
branch. - Commit & push the changes.
For the deployed site a version prefix is added to the URL for each mkdocs page. When developing there is no version prefix. If you want to link from a site page to a documentation page you should prefix the URL with /DOCSLINK/ so that the user is taken to the correct location when browsing in production.