Add mkdocs-material documentation site #59

Merged
admin merged 6 commits from feature/mkdocs into develop 2026-03-08 21:41:06 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 019c377914 - Show all commits
+1 -1
View File
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
python3 python3-pip && \
apt-get clean my room
RUN pip install --no-cache-dir --break-system-packages "mkdocs>=1.6,<2" mkdocs-material
RUN pip3 install --no-cache-dir --break-system-packages "mkdocs>=1.6,<2" mkdocs-material
SHELL ["/bin/bash", "-c"]
ARG FPC_VERSION=3.2.2
+2 -2
View File
@@ -7,11 +7,11 @@ echo " "
if ! command -v mkdocs &> /dev/null; then
echo "Installing mkdocs-material..."
pip install --quiet "mkdocs>=1.6,<2" mkdocs-material
pip3 install --quiet --break-system-packages "mkdocs>=1.6,<2" mkdocs-material
fi
echo "Building static site..."
mkdocs build --strict
python3 -m mkdocs build --strict
if [ $? -eq 0 ]; then
echo "Documentation built successfully. Output: site/"