This repo contains the documentation for the AI-on-the-Edge-Device Project.
- You can edit any
*.md
document in the docs folder. - Then create a Pull Request for it to merge it into the
main
branch (or edit it directly in themain
branch if you have the required rights). - When it got merged, the Github Actions will re-generate the documentation and place it in the
gh-pages
branch. This branch automatically gets populated to the public Documentation Site
The files from the AI-on-the-Edge-Device Wiki got exported and added to this repo. Unless the files are listed in the docs/nav.yml file, they will be listed in the asorted pages section of the left sidebar.
In the end, we should review all pages from there step by step and add them to the upper part of the navigation.
- Make sure there is a top level title (#) and all other chaper headers are on lower levels (##, ###)
- Check the links in the documents
- Fetch included images and place them directly in the docs/img folder
- Rerwrite to have a clear structure
Each page has a link on its top-right corner Edit on GitHub
which brings you directly to the Github editor.
- Add a new
*.md
document in the docs folder. - Add the filename to the docs/nav.yml at the wished position in the Links section.
To test it locally:
-
Clone this repo
-
Install the required tools (See also .github/workflows/build-docs.yaml):
pip install --upgrade pip pip install mkdocs mkdocs-gen-files mkdocs-awesome-pages-plugin mkdocs-material pymdown-extensions
-
In the main folder of the repo, call
mkdocs serve
(and keep it running). This will locally generate the documentation. You can access it under http://127.0.0.1:8000/AI-on-the-edge-device-docs/Any change to the files will automatically be applied.