From 0fba1ccadf437d3c6016263570973a7ea55a83d2 Mon Sep 17 00:00:00 2001 From: Alexander Myasoedov Date: Thu, 14 May 2026 19:14:09 +0300 Subject: [PATCH] feat(docs/vercel.sh): --- docs/vercel.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 docs/vercel.sh diff --git a/docs/vercel.sh b/docs/vercel.sh new file mode 100755 index 0000000..5c3cf69 --- /dev/null +++ b/docs/vercel.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash +# Vercel build command for the MkDocs site. +# Set Vercel "Build Command" to: bash docs/vercel.sh +# Set Vercel "Output Directory" to: site +set -euo pipefail + +python3 --version + +pip3 install --upgrade pip +pip3 install \ + mkdocs \ + mkdocs-material \ + mkdocs-jupyter \ + mkdocstrings-python + +mkdocs build --site-dir site