mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2025-12-06 07:12:04 +01:00
11 lines
236 B
Bash
11 lines
236 B
Bash
#!/bin/bash
|
|
|
|
echo "clean api documentation"
|
|
rm -r docu/docs/api/html
|
|
echo "generate api documentation"
|
|
doxygen docu/doxygen.ini
|
|
|
|
echo "build documentation"
|
|
source ./venv/bin/activate
|
|
python3 -m mkdocs build -f docu/mkdocs.yml
|
|
deactivate |