mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-01 02:29:46 -05:00
8 lines
212 B
Bash
Executable File
8 lines
212 B
Bash
Executable File
#!/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
|