Skip to content

Commit 0fba1cc

Browse files
committed
feat(docs/vercel.sh):
1 parent d5cd85f commit 0fba1cc

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

docs/vercel.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)