We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5cd85f commit 0fba1ccCopy full SHA for 0fba1cc
1 file changed
docs/vercel.sh
@@ -0,0 +1,16 @@
1
+#!/usr/bin/env bash
2
+# Vercel build command for the MkDocs site.
3
+# Set Vercel "Build Command" to: bash docs/vercel.sh
4
+# Set Vercel "Output Directory" to: site
5
+set -euo pipefail
6
+
7
+python3 --version
8
9
+pip3 install --upgrade pip
10
+pip3 install \
11
+ mkdocs \
12
+ mkdocs-material \
13
+ mkdocs-jupyter \
14
+ mkdocstrings-python
15
16
+mkdocs build --site-dir site
0 commit comments