0
0
EXPERIMENTAL: new Markdown based developer documentation. Currently wiki.blender.org is still the official platform.
Go to file
2023-12-11 19:44:14 +01:00
docs Enable various plugins: Search, dark mode toggle, better navigation, etc 2023-12-11 19:25:13 +01:00
.gitattributes Initial commit, adding readme 2023-12-07 16:37:03 +01:00
.gitignore Add .gitignore to avoid committing files meant to stay local 2023-12-07 17:19:59 +01:00
LICENSE Add CC-BY-SA 4.0 license file 2023-12-07 17:21:41 +01:00
mkdocs.yml Use Blender logo instead of Material for MkDocs logo 2023-12-11 19:44:14 +01:00
README.md Build Instructions: Make per platform, add Git LFS setup instructions 2023-12-11 12:12:40 +01:00
requirements.txt Setup navigation plugins & options 2023-12-11 18:38:46 +01:00

Blender Developer Documentation

This is a new (experimental) repository for Markdown based developer documentation, using Material for MkDocs.

The official platform for developer documentation is still wiki.blender.org.

Building this Documentation Offline

The following assumes Python 3, pip, Git and Git LFS are installed.

Set up Git LFS for the current user:

git lfs install

Clone the documentation sources:

git clone https://projects.blender.org/blender/blender-developer-docs.git developer-docs

This will clone the sources into a developer-docs directory inside the current one.

Install all dependencies, such as Material for MkDocs:

python -m pip install -r requirements.txt

Build this documentation with live reloading:

mkdocs serve

Alternatively mkdocs build will generate the documentation as HTML into a site/ directory. Simply open site/index.html in a browser.