mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-03 03:28:39 -05:00
8 lines
212 B
Bash
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
|