Sebastián Ramírez
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with
2 additions and
42 deletions
-
scripts/build-docs.sh
-
scripts/clean.sh
-
scripts/docs-live.sh
-
scripts/format.sh
-
scripts/lint.sh
-
scripts/netlify-docs.sh
-
scripts/publish.sh
|
|
@ -1,8 +0,0 @@ |
|
|
|
#!/usr/bin/env bash |
|
|
|
|
|
|
|
set -e |
|
|
|
set -x |
|
|
|
|
|
|
|
# Check README.md is up to date |
|
|
|
python ./scripts/docs.py verify-docs |
|
|
|
python ./scripts/docs.py build-all |
|
|
@ -1,8 +0,0 @@ |
|
|
|
#!/bin/sh -e |
|
|
|
|
|
|
|
if [ -d 'dist' ] ; then |
|
|
|
rm -r dist |
|
|
|
fi |
|
|
|
if [ -d 'site' ] ; then |
|
|
|
rm -r site |
|
|
|
fi |
|
|
@ -1,5 +0,0 @@ |
|
|
|
#!/usr/bin/env bash |
|
|
|
|
|
|
|
set -e |
|
|
|
|
|
|
|
mkdocs serve --dev-addr 0.0.0.0:8008 |
|
|
@ -1,5 +1,5 @@ |
|
|
|
#!/bin/sh -e |
|
|
|
set -x |
|
|
|
|
|
|
|
ruff fastapi tests docs_src scripts --fix |
|
|
|
ruff check fastapi tests docs_src scripts --fix |
|
|
|
ruff format fastapi tests docs_src scripts |
|
|
|
|
|
@ -4,5 +4,5 @@ set -e |
|
|
|
set -x |
|
|
|
|
|
|
|
mypy fastapi |
|
|
|
ruff fastapi tests docs_src scripts |
|
|
|
ruff check fastapi tests docs_src scripts |
|
|
|
ruff format fastapi tests --check |
|
|
|
|
|
@ -1,14 +0,0 @@ |
|
|
|
#!/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 |
|
|
@ -1,5 +0,0 @@ |
|
|
|
#!/usr/bin/env bash |
|
|
|
|
|
|
|
set -e |
|
|
|
|
|
|
|
flit publish |