Browse Source

🔨 Update internal scripts and remove unused ones (#11499)

pull/11500/head
Sebastián Ramírez 11 months ago
committed by GitHub
parent
commit
f49da74200
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 8
      scripts/build-docs.sh
  2. 8
      scripts/clean.sh
  3. 5
      scripts/docs-live.sh
  4. 2
      scripts/format.sh
  5. 2
      scripts/lint.sh
  6. 14
      scripts/netlify-docs.sh
  7. 5
      scripts/publish.sh

8
scripts/build-docs.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

8
scripts/clean.sh

@ -1,8 +0,0 @@
#!/bin/sh -e
if [ -d 'dist' ] ; then
rm -r dist
fi
if [ -d 'site' ] ; then
rm -r site
fi

5
scripts/docs-live.sh

@ -1,5 +0,0 @@
#!/usr/bin/env bash
set -e
mkdocs serve --dev-addr 0.0.0.0:8008

2
scripts/format.sh

@ -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

2
scripts/lint.sh

@ -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

14
scripts/netlify-docs.sh

@ -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

5
scripts/publish.sh

@ -1,5 +0,0 @@
#!/usr/bin/env bash
set -e
flit publish
Loading…
Cancel
Save