Files
fastapi/scripts/netlify-docs.sh
Sebastián Ramírez 786c392bd5 💚 Fix Netlify build with pipenv
2018-12-17 18:56:48 +04:00

8 lines
212 B
Bash

#!/usr/bin/env bash
# Install pipenv to be able to install from Pipfile
pip install pipenv
# Install Pipfile including --dev, to install mkdocs and plugins
pipenv install --dev
# Finally, run mkdocs
mkdocs build