mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 18:46:40 +00:00
7 lines
212 B
Bash
Executable file
7 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
|