pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
337 B
14 lines
337 B
#!/usr/bin/env bash
|
|
set -x
|
|
set -e
|
|
# Install pip
|
|
cd /tmp
|
|
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
|
|
python3.6 get-pip.py --user
|
|
cd -
|
|
# Install Flit to be able to install all
|
|
python3.6 -m pip install --user flit
|
|
# Install with Flit
|
|
python3.6 -m flit install --user --extras doc
|
|
# Finally, run mkdocs
|
|
python3.6 -m mkdocs build
|
|
|