This repo is to host a tutorial documentation site for running generative AI models on NVIDIA Jetson devices.
The auto generated documentation is hosted on the following, using their CI/CD feature to automatically generate/update the HTML documentation site upon new commit:
https://squidfunk.github.io/mkdocs-material/getting-started/
sudo apt install -y docker.io
sudo docker pull squidfunk/mkdocs-material
Mkdocs: Start development server on http://localhost:8000
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material
If you get "docker: Got permission denied while trying to connect to the Docker daemon socket at ..." error, issue
sudo chmod 666 /var/run/docker.sock
to get around with the issue.
(to be documented)