Update the documentation
The documentation uses MkDocs with mkdocs-material.
-
Clone the repository:
git clone https://gitlab.com/sylva-projects/sylva-elements/kunai.git cd kunai/mkdocs
-
Create a branch containing your change
git checkout -b 'your-branch-name'
-
Create a virtual environment:
python -m venv venv
-
Activate the virtual environment:
- Linux/macOS:
source venv/bin/activate
- Windows:
.\venv\Scripts\activate
- Linux/macOS:
-
Install dependencies:
pip install -r requirements.txt
-
Run the MkDocs development server:
mkdocs serve
-
Update the navigation (if necessary):
python generate_index.py
-
Commit and push your changes:
git add . git commit -m "fix: Update documentation" git push