The documentation for the stone engine project
To modify it, you can use vscode or Obsidian.
All documentation files are located in the docs/ folder. Everything is written in markdown files to keep simplicity.
The markdown is compiled into html files using mkdocs
You can install it and its dependency using pip. So you need to have python installed locally.
The Makefile target install is already setup to install everything required.
make installOnce mkdocs is installed, you can either :
- build the html files with the
buildtarget - start the http service with the
servetarget
make buildmake serveUsing
servewill not create html files locally.
After using serve, you can open the documentation in your browser at http://127.0.0.1:8000.
Any modifications to the markdown files will hot reload the page.