updated provider_models.json to yaml, added that file to our docs for reference

This commit is contained in:
Salman Paracha 2026-01-27 15:38:14 -08:00
parent 5984e2c594
commit 1d5c8e05ac
13 changed files with 406 additions and 360 deletions

View file

@ -1,4 +1,19 @@
docker build -f Dockerfile . -t sphinx
docker run --user $(id -u):$(id -g) --rm -v $(pwd):/docs sphinx make clean
docker run --user $(id -u):$(id -g) --rm -v $(pwd):/docs sphinx make html
chmod -R 777 build/html
docker build -f docs/Dockerfile . -t sphinx
# Clean build output locally
rm -rf docs/build
# Run make clean/html while keeping provider_models.yaml from the image
docker run --user $(id -u):$(id -g) --rm \
-v $(pwd)/docs/source:/docs/source \
-v $(pwd)/docs/Makefile:/docs/Makefile \
-v $(pwd)/docs/build:/docs/build \
sphinx make clean
docker run --user $(id -u):$(id -g) --rm \
-v $(pwd)/docs/source:/docs/source \
-v $(pwd)/docs/Makefile:/docs/Makefile \
-v $(pwd)/docs/build:/docs/build \
sphinx make html
chmod -R 777 docs/build/html